Message ID | 20240829123938.31115-1-quic_mapa@quicinc.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [V4] scsi: ufs: qcom: update MODE_MAX cfg_bw value | expand |
On Thu, Aug 29, 2024 at 06:09:38PM GMT, Manish Pandey wrote: > The cfg_bw value for max mode is incorrect for the Qualcomm SoC. > Update it to the correct value for cfg_bw max mode. > > Fixes: 03ce80a1bb86 ("scsi: ufs: qcom: Add support for scaling interconnects") > Cc: stable@vger.kernel.org > Signed-off-by: Manish Pandey <quic_mapa@quicinc.com> > --- > Changes from v3: > - Cced stable@vger.kernel.org. > > Changes from v2: > - Addressed Mani comment, added fixes tag. Mani also asked you to provide details, why the value is considered to be incorrect. You have responded in the email, but instead those details should have gone to the commit message. Please fix it accordingly. > > Changes from v1: > - Updated commit message. > --- > drivers/ufs/host/ufs-qcom.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c > index c87fdc849c62..ecdfff2456e3 100644 > --- a/drivers/ufs/host/ufs-qcom.c > +++ b/drivers/ufs/host/ufs-qcom.c > @@ -93,7 +93,7 @@ static const struct __ufs_qcom_bw_table { > [MODE_HS_RB][UFS_HS_G3][UFS_LANE_2] = { 1492582, 204800 }, > [MODE_HS_RB][UFS_HS_G4][UFS_LANE_2] = { 2915200, 409600 }, > [MODE_HS_RB][UFS_HS_G5][UFS_LANE_2] = { 5836800, 819200 }, > - [MODE_MAX][0][0] = { 7643136, 307200 }, > + [MODE_MAX][0][0] = { 7643136, 819200 }, > }; > > static void ufs_qcom_get_default_testbus_cfg(struct ufs_qcom_host *host); > -- > 2.17.1 >
diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c index c87fdc849c62..ecdfff2456e3 100644 --- a/drivers/ufs/host/ufs-qcom.c +++ b/drivers/ufs/host/ufs-qcom.c @@ -93,7 +93,7 @@ static const struct __ufs_qcom_bw_table { [MODE_HS_RB][UFS_HS_G3][UFS_LANE_2] = { 1492582, 204800 }, [MODE_HS_RB][UFS_HS_G4][UFS_LANE_2] = { 2915200, 409600 }, [MODE_HS_RB][UFS_HS_G5][UFS_LANE_2] = { 5836800, 819200 }, - [MODE_MAX][0][0] = { 7643136, 307200 }, + [MODE_MAX][0][0] = { 7643136, 819200 }, }; static void ufs_qcom_get_default_testbus_cfg(struct ufs_qcom_host *host);
The cfg_bw value for max mode is incorrect for the Qualcomm SoC. Update it to the correct value for cfg_bw max mode. Fixes: 03ce80a1bb86 ("scsi: ufs: qcom: Add support for scaling interconnects") Cc: stable@vger.kernel.org Signed-off-by: Manish Pandey <quic_mapa@quicinc.com> --- Changes from v3: - Cced stable@vger.kernel.org. Changes from v2: - Addressed Mani comment, added fixes tag. Changes from v1: - Updated commit message. --- drivers/ufs/host/ufs-qcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)