LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Stephen Boyd <sboyd@kernel.org> To: Michael Turquette <mturquette@baylibre.com>, Taniya Das <tdas@codeaurora.org> Cc: Andy Gross <andy.gross@linaro.org>, David Brown <david.brown@linaro.org>, Rajendra Nayak <rnayak@codeaurora.org>, linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Taniya Das <tdas@codeaurora.org> Subject: Re: [PATCH v1 2/3] clk: qcom: rcg2: Add support for hardware control mode Date: Mon, 15 Jul 2019 15:52:18 -0700 [thread overview] Message-ID: <20190715225219.B684820665@mail.kernel.org> (raw) In-Reply-To: <1557339895-21952-3-git-send-email-tdas@codeaurora.org> Quoting Taniya Das (2019-05-08 11:24:54) > diff --git a/drivers/clk/qcom/clk-rcg2.c b/drivers/clk/qcom/clk-rcg2.c > index 57dbac9..5bb6d45 100644 > --- a/drivers/clk/qcom/clk-rcg2.c > +++ b/drivers/clk/qcom/clk-rcg2.c > @@ -289,6 +289,9 @@ static int __clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f) > cfg |= rcg->parent_map[index].cfg << CFG_SRC_SEL_SHIFT; > if (rcg->mnd_width && f->n && (f->m != f->n)) > cfg |= CFG_MODE_DUAL_EDGE; > + if (rcg->flags & HW_CLK_CTRL_MODE) > + cfg |= CFG_HW_CLK_CTRL_MASK; > + Above this we have commit bdc3bbdd40ba ("clk: qcom: Clear hardware clock control bit of RCG") that clears this bit. Is it possible to always set this bit and then have an override flag used in sdm845 that says to _not_ set this bit? Presumably on earlier platforms writing the bit is a no-op so it's safe to write the bit on those platforms. This way, if it's going to be the default we can avoid setting the flag and only set the flag on older platforms where it shouldn't be done for some reason. > return regmap_update_bits(rcg->clkr.regmap, RCG_CFG_OFFSET(rcg), > mask, cfg); > } > -- > Qualcomm INDIA, on behalf of Qualcomm Innovation Center, Inc.is a member > of the Code Aurora Forum, hosted by the Linux Foundation. >
next prev parent reply other threads:[~2019-07-15 22:52 UTC|newest] Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-08 18:24 [PATCH v1 0/3] clk: qcom: Misc updates for Root Clock Generators Taniya Das 2019-05-08 18:24 ` [PATCH v1 1/3] clk: qcom: rcg: Return failure for RCG update Taniya Das 2019-07-15 22:52 ` Stephen Boyd 2019-05-08 18:24 ` [PATCH v1 2/3] clk: qcom: rcg2: Add support for hardware control mode Taniya Das 2019-07-15 22:52 ` Stephen Boyd [this message] 2019-07-16 4:19 ` Taniya Das 2019-07-16 23:18 ` Stephen Boyd 2019-07-30 10:50 ` Taniya Das 2019-07-30 15:38 ` Stephen Boyd 2019-05-08 18:24 ` [PATCH v1 3/3] clk: qcom: rcg: update the DFS macro for RCG Taniya Das 2019-05-09 17:27 ` Stephen Boyd 2019-05-10 2:58 ` Taniya Das 2019-05-10 17:54 ` Stephen Boyd 2019-05-13 3:44 ` Taniya Das 2019-07-15 22:44 ` Stephen Boyd 2019-07-16 4:22 ` Taniya Das 2019-07-16 23:22 ` Stephen Boyd 2019-07-30 10:51 ` Taniya Das 2019-07-30 15:40 ` Stephen Boyd
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20190715225219.B684820665@mail.kernel.org \ --to=sboyd@kernel.org \ --cc=andy.gross@linaro.org \ --cc=david.brown@linaro.org \ --cc=linux-arm-msm@vger.kernel.org \ --cc=linux-clk@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-soc@vger.kernel.org \ --cc=mturquette@baylibre.com \ --cc=rnayak@codeaurora.org \ --cc=tdas@codeaurora.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).