diff mbox series

[v3,2/2] scsi: ufs-qcom: Keep core_clk_unipro ON while link is active

Message ID 1606356063-38380-3-git-send-email-cang@codeaurora.org
State New
Headers show
Series Subject: [PATCH v3 0/2] Refactor ufshcd_setup_clocks() to remove param skip_ref_clk | expand

Commit Message

Can Guo Nov. 26, 2020, 2:01 a.m. UTC
If we want to disable clocks to save power but still keep the link active,
core_clk_unipro, as same as ref_clk, should not be the one being disabled.

Reviewed-by: Hongwu Su<hongwus@codeaurora.org>
Signed-off-by: Can Guo <cang@codeaurora.org>
---
 drivers/scsi/ufs/ufs-qcom.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Asutosh Das (asd) Dec. 1, 2020, 2:36 a.m. UTC | #1
On 11/25/2020 6:01 PM, Can Guo wrote:
> If we want to disable clocks to save power but still keep the link active,

> core_clk_unipro, as same as ref_clk, should not be the one being disabled.

> 

> Reviewed-by: Hongwu Su<hongwus@codeaurora.org>

> Signed-off-by: Can Guo <cang@codeaurora.org>

> ---


Reviewed-by: Asutosh Das <asutoshd@codeaurora.org>


>   drivers/scsi/ufs/ufs-qcom.c | 6 ++++++

>   1 file changed, 6 insertions(+)

> 

> diff --git a/drivers/scsi/ufs/ufs-qcom.c b/drivers/scsi/ufs/ufs-qcom.c

> index f9d6ef3..8a7fc62 100644

> --- a/drivers/scsi/ufs/ufs-qcom.c

> +++ b/drivers/scsi/ufs/ufs-qcom.c

> @@ -977,6 +977,7 @@ static int ufs_qcom_init(struct ufs_hba *hba)

>   	struct platform_device *pdev = to_platform_device(dev);

>   	struct ufs_qcom_host *host;

>   	struct resource *res;

> +	struct ufs_clk_info *clki;

>   

>   	if (strlen(android_boot_dev) && strcmp(android_boot_dev, dev_name(dev)))

>   		return -ENODEV;

> @@ -1075,6 +1076,11 @@ static int ufs_qcom_init(struct ufs_hba *hba)

>   		}

>   	}

>   

> +	list_for_each_entry(clki, &hba->clk_list_head, list) {

> +		if (!strcmp(clki->name, "core_clk_unipro"))

> +			clki->keep_link_active = true;

> +	}

> +

>   	err = ufs_qcom_init_lane_clks(host);

>   	if (err)

>   		goto out_variant_clear;

> 



-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
Linux Foundation Collaborative Project
diff mbox series

Patch

diff --git a/drivers/scsi/ufs/ufs-qcom.c b/drivers/scsi/ufs/ufs-qcom.c
index f9d6ef3..8a7fc62 100644
--- a/drivers/scsi/ufs/ufs-qcom.c
+++ b/drivers/scsi/ufs/ufs-qcom.c
@@ -977,6 +977,7 @@  static int ufs_qcom_init(struct ufs_hba *hba)
 	struct platform_device *pdev = to_platform_device(dev);
 	struct ufs_qcom_host *host;
 	struct resource *res;
+	struct ufs_clk_info *clki;
 
 	if (strlen(android_boot_dev) && strcmp(android_boot_dev, dev_name(dev)))
 		return -ENODEV;
@@ -1075,6 +1076,11 @@  static int ufs_qcom_init(struct ufs_hba *hba)
 		}
 	}
 
+	list_for_each_entry(clki, &hba->clk_list_head, list) {
+		if (!strcmp(clki->name, "core_clk_unipro"))
+			clki->keep_link_active = true;
+	}
+
 	err = ufs_qcom_init_lane_clks(host);
 	if (err)
 		goto out_variant_clear;