From: Frank Oltmanns <frank@oltmanns.dev>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Ond?0?0ej Jirman <x@xnux.eu>,
linux-sunxi@lists.linux.dev, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 1/3] clk: sunxi-ng: add support for rate resetting notifier
Date: Mon, 07 Aug 2023 12:21:47 +0200 [thread overview]
Message-ID: <87edkftao4.fsf@oltmanns.dev> (raw)
In-Reply-To: <27d09ea33c085d6a2ea9efb91a8cdd7e7464fda7.camel@icenowy.me>
On 2023-08-07 at 17:42:22 +0800, Icenowy Zheng <uwu@icenowy.me> wrote:
> 在 2023-08-07星期一的 11:36 +0200,Frank Oltmanns写道:
>> From: Icenowy Zheng <icenowy@aosc.io>
>>
>> In some situaitons, we will want a clock rate be kept while its
>> parent
>> can change, for example, to make dual-head work on A64, TCON0 clock
>> needs to be kept for LCD display and its parent (or grandparent)
>> PLL-Video0 need to be changed for HDMI display. (There's a quirk on
>> A64
>> that HDMI PHY can only use PLL-Video0, not PLL-Video1).
>>
>> Add a notifier helper to create such kind of rate keeping notifier by
>> reset the rate after the parent changed.
>>
>> Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
>> ---
>> drivers/clk/sunxi-ng/ccu_common.c | 22 ++++++++++++++++++++++
>> drivers/clk/sunxi-ng/ccu_common.h | 12 ++++++++++++
>> 2 files changed, 34 insertions(+)
>>
>> diff --git a/drivers/clk/sunxi-ng/ccu_common.c b/drivers/clk/sunxi-
>> ng/ccu_common.c
>> index 8d28a7a079d0..434fa46ad460 100644
>> --- a/drivers/clk/sunxi-ng/ccu_common.c
>> +++ b/drivers/clk/sunxi-ng/ccu_common.c
>> @@ -87,6 +87,28 @@ int ccu_pll_notifier_register(struct ccu_pll_nb
>> *pll_nb)
>> }
>> EXPORT_SYMBOL_NS_GPL(ccu_pll_notifier_register, SUNXI_CCU);
>>
>> +static int ccu_rate_reset_notifier_cb(struct notifier_block *nb,
>> + unsigned long event, void
>> *data)
>> +{
>> + struct ccu_rate_reset_nb *rate_reset =
>> to_ccu_rate_reset_nb(nb);
>> +
>> + if (event == PRE_RATE_CHANGE) {
>> + rate_reset->saved_rate = clk_get_rate(rate_reset-
>> >target_clk);
>
> In fact I think we should have a better way to save the intended clock
> rate ;-)
>
Are you referring to struct clk_core's clk_req member [1]? Maxime Ripard
also mentioned it to me [2]? Or do you have something else in mind?
Note that I have a patchset on the way [3], that will improve rate
selection for pll-video0 and its descendants. I'll double-check if that
improves the situation in a way so that the clk_get_rate() might be good
enough.
Thanks,
Frank
[1]: https://elixir.bootlin.com/linux/latest/source/drivers/clk/clk.c#L68
[2]: https://lore.kernel.org/linux-clk/xcgmqvdoip53yao4sfoznnppauhmsmdablwoewh43zjv3bhidp@d7pxqohxydve/
[3]: https://lore.kernel.org/linux-clk/20230806-pll-mipi_set_rate_parent-v5-0-db4f5ca33fc3@oltmanns.dev/
>
>> + } else if (event == POST_RATE_CHANGE) {
>> + clk_set_rate(rate_reset->target_clk, rate_reset-
>> >saved_rate);
>> + }
>> +
>> + return NOTIFY_DONE;
>> +}
>> +
>> +int ccu_rate_reset_notifier_register(struct ccu_rate_reset_nb
>> *rate_reset_nb)
>> +{
>> + rate_reset_nb->clk_nb.notifier_call =
>> ccu_rate_reset_notifier_cb;
>> +
>> + return clk_notifier_register(rate_reset_nb->common->hw.clk,
>> + &rate_reset_nb->clk_nb);
>> +}
>> +
>> static int sunxi_ccu_probe(struct sunxi_ccu *ccu, struct device
>> *dev,
>> struct device_node *node, void __iomem
>> *reg,
>> const struct sunxi_ccu_desc *desc)
>> diff --git a/drivers/clk/sunxi-ng/ccu_common.h b/drivers/clk/sunxi-
>> ng/ccu_common.h
>> index fbf16c6b896d..6b0b05fae123 100644
>> --- a/drivers/clk/sunxi-ng/ccu_common.h
>> +++ b/drivers/clk/sunxi-ng/ccu_common.h
>> @@ -69,4 +69,16 @@ int devm_sunxi_ccu_probe(struct device *dev, void
>> __iomem *reg,
>> void of_sunxi_ccu_probe(struct device_node *node, void __iomem *reg,
>> const struct sunxi_ccu_desc *desc);
>>
>> +struct ccu_rate_reset_nb {
>> + struct notifier_block clk_nb;
>> + struct ccu_common *common;
>> +
>> + struct clk *target_clk;
>> + unsigned long saved_rate;
>> +};
>> +
>> +#define to_ccu_rate_reset_nb(_nb) container_of(_nb, struct
>> ccu_rate_reset_nb, clk_nb)
>> +
>> +int ccu_rate_reset_notifier_register(struct ccu_rate_reset_nb
>> *rate_reset_nb);
>> +
>> #endif /* _COMMON_H_ */
>>
next prev parent reply other threads:[~2023-08-07 10:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-07 9:36 [PATCH 0/3] pll-video0 notifier for v6.5+ Frank Oltmanns
2023-08-07 9:36 ` [PATCH 1/3] clk: sunxi-ng: add support for rate resetting notifier Frank Oltmanns
2023-08-07 9:42 ` Icenowy Zheng
2023-08-07 10:21 ` Frank Oltmanns [this message]
2023-08-07 9:36 ` [PATCH 2/3] clk: sunxi-ng: a64: keep tcon0 clock rate when pll-video0's rate changes Frank Oltmanns
2023-08-07 9:43 ` Icenowy Zheng
2023-08-07 9:48 ` Frank Oltmanns
2023-08-07 10:22 ` Icenowy Zheng
2023-08-12 8:39 ` Frank Oltmanns
2023-08-07 9:36 ` [PATCH 3/3] drm/sun4i: tcon: hand over the duty to keep TCON0 clock to CCU on A64 Frank Oltmanns
2023-08-10 13:18 ` [PATCH 0/3] pll-video0 notifier for v6.5+ Chen-Yu Tsai
2023-08-12 8:36 ` Frank Oltmanns
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=87edkftao4.fsf@oltmanns.dev \
--to=frank@oltmanns.dev \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=uwu@icenowy.me \
--cc=x@xnux.eu \
/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: link
Be 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).