Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 35A4FC636CD for ; Wed, 1 Feb 2023 14:41:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232466AbjBAOlM (ORCPT ); Wed, 1 Feb 2023 09:41:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46936 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231215AbjBAOlH (ORCPT ); Wed, 1 Feb 2023 09:41:07 -0500 Received: from alexa-out-sd-02.qualcomm.com (alexa-out-sd-02.qualcomm.com [199.106.114.39]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 255B3C67C; Wed, 1 Feb 2023 06:41:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1675262466; x=1706798466; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=FP3eOSKVuO2pSoDoClWW9jU0h8Pdb0AyhKyqyRnXwSc=; b=r1T9jDiSeP+TS1u56fv3ezZqx1ENuC7DNwTe7BQQbPm5wVcohBBNZX6Y AnTXmygQqCPj/h/FDmCclnD12WPWfLTyYPKxRqGLNsagjHH77fIBfjQXk H4ZJ8rJS98Ifn8HzU/tEMax1Slgh5GjMuIYv46IgYSI0A8ikbk182hG2k U=; Received: from unknown (HELO ironmsg-SD-alpha.qualcomm.com) ([10.53.140.30]) by alexa-out-sd-02.qualcomm.com with ESMTP; 01 Feb 2023 06:41:05 -0800 X-QCInternal: smtphost Received: from nalasex01a.na.qualcomm.com ([10.47.209.196]) by ironmsg-SD-alpha.qualcomm.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Feb 2023 06:41:05 -0800 Received: from [10.50.40.201] (10.80.80.8) by nalasex01a.na.qualcomm.com (10.47.209.196) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.36; Wed, 1 Feb 2023 06:40:56 -0800 Message-ID: Date: Wed, 1 Feb 2023 20:10:52 +0530 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH 6/6] clk: qcom: Fix APSS PLL and RCG Configuration Content-Language: en-US To: Dmitry Baryshkov , Konrad Dybcio , , , , , , , , , , , , , , , , , , , CC: , , , , , , References: <20230113143647.14961-1-quic_devipriy@quicinc.com> <20230113143647.14961-7-quic_devipriy@quicinc.com> From: Devi Priya In-Reply-To: Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.80.80.8] X-ClientProxiedBy: nasanex01b.na.qualcomm.com (10.46.141.250) To nalasex01a.na.qualcomm.com (10.47.209.196) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/31/2023 3:10 PM, Dmitry Baryshkov wrote: > On 31/01/2023 11:17, Devi Priya wrote: >> Thanks for taking time to review the patch >> >> On 1/13/2023 8:50 PM, Konrad Dybcio wrote: >>> >>> >>> On 13.01.2023 15:36, devi priya wrote: >>>> Included CLK_IS_CRITICAL flag which helps to properly enable >>>> the APSS PLL during bootup. >>> Please describe the issue and not only the user-visible impact it >>> makes. Does the PLL get shut down by clk_ignore_unused? Maybe you >>> would be interested in the sync_state changes that landed in recent >>> -next that may solve it for you? >>> >>> I don't think it should be always-on, as you have an alternate source >>> for low power modes, adding CLK_IS_CRITICAL will keep the PLL enabled >>> even if you're not using it. >> Yeah, got it. Will drop the critical flag >>> >>>> clk_rcg2_ops should be used for APSS clock RCG, as other ops >>>> will not configure the RCG register >>> RCG register meaning RCG register*s*, meaning in this case M/N/D >>> which would be required for proper rate setting and not only input >>> switching (which arguably doesn't seem to be of much concern on a >>> single-parent clock)? This all is not obvious.. >>> >>> Konrad >> The source selection is done by configuring the RCGR config register >> with the source entry (P_APSS_PLL_EARLY) added to the frequency table. >> Proper rate is achieved by configuring the PLL and hence M/N/D values >> are not configured > > But the clk_rcg2_mux_closest_ops also programs the parent for the clock. > So from your description it isn't obvious what is wrong with the current > _ops used for the clock. > Okay, understood & agreed. Will re-verify it once and update it accordingly in V2 >>>> >>>> Co-developed-by: Praveenkumar I >>>> Signed-off-by: Praveenkumar I >>>> Signed-off-by: devi priya >>>> --- >>>>   drivers/clk/qcom/apss-ipq-pll.c | 1 + >>>>   drivers/clk/qcom/apss-ipq6018.c | 8 +++++++- >>>>   2 files changed, 8 insertions(+), 1 deletion(-) >>>> >>>> diff --git a/drivers/clk/qcom/apss-ipq-pll.c >>>> b/drivers/clk/qcom/apss-ipq-pll.c >>>> index dd0c01bf5a98..75486a124fcd 100644 >>>> --- a/drivers/clk/qcom/apss-ipq-pll.c >>>> +++ b/drivers/clk/qcom/apss-ipq-pll.c >>>> @@ -33,6 +33,7 @@ static struct clk_alpha_pll ipq_pll = { >>>>               }, >>>>               .num_parents = 1, >>>>               .ops = &clk_alpha_pll_huayra_ops, >>>> +            .flags = CLK_IS_CRITICAL, >>>>           }, >>>>       }, >>>>   }; >>>> diff --git a/drivers/clk/qcom/apss-ipq6018.c >>>> b/drivers/clk/qcom/apss-ipq6018.c >>>> index f2f502e2d5a4..0d0e7196a4dc 100644 >>>> --- a/drivers/clk/qcom/apss-ipq6018.c >>>> +++ b/drivers/clk/qcom/apss-ipq6018.c >>>> @@ -33,15 +33,21 @@ static const struct parent_map >>>> parents_apcs_alias0_clk_src_map[] = { >>>>       { P_APSS_PLL_EARLY, 5 }, >>>>   }; >>>> +static const struct freq_tbl ftbl_apcs_alias0_clk_src[] = { >>>> +    { .src = P_APSS_PLL_EARLY, .pre_div = 1 }, >>>> +    { } >>>> +}; >>>> + >>>>   static struct clk_rcg2 apcs_alias0_clk_src = { >>>>       .cmd_rcgr = 0x0050, >>>> +    .freq_tbl = ftbl_apcs_alias0_clk_src, >>>>       .hid_width = 5, >>>>       .parent_map = parents_apcs_alias0_clk_src_map, >>>>       .clkr.hw.init = &(struct clk_init_data){ >>>>           .name = "apcs_alias0_clk_src", >>>>           .parent_data = parents_apcs_alias0_clk_src, >>>>           .num_parents = ARRAY_SIZE(parents_apcs_alias0_clk_src), >>>> -        .ops = &clk_rcg2_mux_closest_ops, >>>> +        .ops = &clk_rcg2_ops, >>>>           .flags = CLK_SET_RATE_PARENT, >>>>       }, >>>>   }; >> Best Regards, >> Devi Priya > Best Regards, Devi Priya