mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Dinh Nguyen <dinguyen@kernel.org>
To: Jerome Brunet <jbrunet@baylibre.com>,
	"Ng, Adrian Ho Yin" <adrian.ho.yin.ng@altera.com>,
	Brian Masney <bmasney@redhat.com>
Cc: Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/3] clk: socfpga: agilex: convert to CLK_OF_DECLARE()
Date: Fri, 25 Sep 2026 10:02:05 -0500	[thread overview]
Message-ID: <f45985ee-afbe-4c97-b2bd-3cec4a6bc54a@kernel.org> (raw)
In-Reply-To: <1jh5jd8yk0.fsf@starbuckisacylon.baylibre.com>



On 9/25/26 04:34, Jerome Brunet wrote:
> On lun. 21 sept. 2026 at 11:17, "Ng, Adrian Ho Yin" <adrian.ho.yin.ng@altera.com> wrote:
> 
>> On 9/19/2026 6:42 AM, Brian Masney wrote:
>>> Hi Adrian,
>>>
>>> On Fri, Sep 11, 2026 at 03:01:18PM +0800, adrian.ho.yin.ng@altera.com wrote:
>>>> From: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
>>>>
>>>> Register Agilex and eASIC N5X clocks at of_clk_init() so they are
>>>> available before platform devices probe.
>>>>
>>>> Signed-off-by: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
>>>> ---
>>>>    drivers/clk/socfpga/clk-agilex.c | 83 +++++++++++---------------------
>>>>    1 file changed, 28 insertions(+), 55 deletions(-)
>>>>
>>>> diff --git a/drivers/clk/socfpga/clk-agilex.c b/drivers/clk/socfpga/clk-agilex.c
>>>> index 2bdea1997b5e..64a20c727d16 100644
>>>> --- a/drivers/clk/socfpga/clk-agilex.c
>>>> +++ b/drivers/clk/socfpga/clk-agilex.c
>>>> @@ -4,8 +4,9 @@
>>>>     */
>>>>    #include <linux/slab.h>
>>>>    #include <linux/clk-provider.h>
>>>> +#include <linux/io.h>
>>>>    #include <linux/of.h>
>>>> -#include <linux/platform_device.h>
>>>> +#include <linux/of_address.h>
>>>>    
>>>>    #include <dt-bindings/clock/agilex-clock.h>
>>>>    
>>>> @@ -454,24 +455,26 @@ static int n5x_clk_register_pll(const struct stratix10_pll_clock *clks,
>>>>    	return 0;
>>>>    }
>>>>    
>>>> -static int agilex_clkmgr_init(struct platform_device *pdev)
>>>> +static void __init agilex_clkmgr_init(struct device_node *np)
>>>>    {
>>>> -	struct device_node *np = pdev->dev.of_node;
>>>> -	struct device *dev = &pdev->dev;
>>>>    	struct stratix10_clock_data *clk_data;
>>>>    	void __iomem *base;
>>>>    	int i, num_clks;
>>>>    
>>>> -	base = devm_platform_ioremap_resource(pdev, 0);
>>>> -	if (IS_ERR(base))
>>>> -		return PTR_ERR(base);
>>>> +	base = of_iomap(np, 0);
>>>> +	if (!base) {
>>>> +		pr_err("%s: failed to map clock registers\n", __func__);
>>>> +		return;
>>>> +	}
>>>>    
>>>>    	num_clks = AGILEX_NUM_CLKS;
>>>>    
>>>> -	clk_data = devm_kzalloc(dev, struct_size(clk_data, clk_data.hws,
>>>> -				num_clks), GFP_KERNEL);
>>>> -	if (!clk_data)
>>>> -		return -ENOMEM;
>>>> +	clk_data = kzalloc(struct_size(clk_data, clk_data.hws, num_clks),
>>>> +			   GFP_KERNEL);
>>>> +	if (!clk_data) {
>>>> +		iounmap(base);
>>>> +		return;
>>>> +	}
>>>>    
>>>>    	clk_data->clk_data.num = num_clks;
>>>>    	clk_data->base = base;
>>>> @@ -491,27 +494,28 @@ static int agilex_clkmgr_init(struct platform_device *pdev)
>>>>    	agilex_clk_register_gate(agilex_gate_clks, ARRAY_SIZE(agilex_gate_clks),
>>>>    			      clk_data);
>>>>    	of_clk_add_hw_provider(np, of_clk_hw_onecell_get, &clk_data->clk_data);
>>>> -	return 0;
>>>>    }
>>>>    
>>>> -static int n5x_clkmgr_init(struct platform_device *pdev)
>>>> +static void __init n5x_clkmgr_init(struct device_node *np)
>>>>    {
>>>> -	struct device_node *np = pdev->dev.of_node;
>>>> -	struct device *dev = &pdev->dev;
>>>>    	struct stratix10_clock_data *clk_data;
>>>>    	void __iomem *base;
>>>>    	int i, num_clks;
>>>>    
>>>> -	base = devm_platform_ioremap_resource(pdev, 0);
>>>> -	if (IS_ERR(base))
>>>> -		return PTR_ERR(base);
>>>> +	base = of_iomap(np, 0);
>>>> +	if (!base) {
>>>> +		pr_err("%s: failed to map clock registers\n", __func__);
>>>> +		return;
>>>> +	}
>>>>    
>>>>    	num_clks = AGILEX_NUM_CLKS;
>>>>    
>>>> -	clk_data = devm_kzalloc(dev, struct_size(clk_data, clk_data.hws,
>>>> -				num_clks), GFP_KERNEL);
>>>> -	if (!clk_data)
>>>> -		return -ENOMEM;
>>>> +	clk_data = kzalloc(struct_size(clk_data, clk_data.hws, num_clks),
>>>> +			   GFP_KERNEL);
>>>> +	if (!clk_data) {
>>>> +		iounmap(base);
>>>> +		return;
>>>> +	}
>>>>    
>>>>    	clk_data->base = base;
>>>>    	clk_data->clk_data.num = num_clks;
>>>> @@ -531,38 +535,7 @@ static int n5x_clkmgr_init(struct platform_device *pdev)
>>>>    	agilex_clk_register_gate(agilex_gate_clks, ARRAY_SIZE(agilex_gate_clks),
>>>>    			      clk_data);
>>>>    	of_clk_add_hw_provider(np, of_clk_hw_onecell_get, &clk_data->clk_data);
>>>> -	return 0;
>>>> -}
>>>> -
>>>> -static int agilex_clkmgr_probe(struct platform_device *pdev)
>>>> -{
>>>> -	int (*probe_func)(struct platform_device *init_func);
>>>> -
>>>> -	probe_func = of_device_get_match_data(&pdev->dev);
>>>> -	if (!probe_func)
>>>> -		return -ENODEV;
>>>> -	return	probe_func(pdev);
>>>>    }
>>>>    
>>>> -static const struct of_device_id agilex_clkmgr_match_table[] = {
>>>> -	{ .compatible = "intel,agilex-clkmgr",
>>>> -	  .data = agilex_clkmgr_init },
>>>> -	{ .compatible = "intel,easic-n5x-clkmgr",
>>>> -	  .data = n5x_clkmgr_init },
>>>> -	{ }
>>>> -};
>>>> -
>>>> -static struct platform_driver agilex_clkmgr_driver = {
>>>> -	.probe		= agilex_clkmgr_probe,
>>>> -	.driver		= {
>>>> -		.name	= "agilex-clkmgr",
>>>> -		.suppress_bind_attrs = true,
>>>> -		.of_match_table = agilex_clkmgr_match_table,
>>>> -	},
>>>> -};
>>>> -
>>>> -static int __init agilex_clk_init(void)
>>>> -{
>>>> -	return platform_driver_register(&agilex_clkmgr_driver);
>>>> -}
>>>> -core_initcall(agilex_clk_init);
>>>> +CLK_OF_DECLARE(agilex_clkmgr, "intel,agilex-clkmgr", agilex_clkmgr_init);
>>>> +CLK_OF_DECLARE(n5x_clkmgr, "intel,easic-n5x-clkmgr", n5x_clkmgr_init);
>>>
>>> Why do all of these clk providers need to be registered so early?
>>> CLK_OF_DECLARE is abused quite a bit today and the majority of the clk
>>> drivers that use it don't actually need it.
>>>
>> Hi Brian,
>>
>> Thanks for the review.
>>
>> subsys_initcall() / subsys_platform_driver() would not fix the failure
>> we are hitting. Both still run after time_init(), while the DW APB timer
>> is registered via TIMER_OF_DECLARE from timer_probe().
> 
> You presumably only need a tiny subset of clock to feed the timer, not
> the whole controller
> 
> Can you just register those early ?  clk_mt8173_infracfg* does that for example.
>>
>
I was thinking that, yes. Thanks for bringing it up.

Dinh

  reply	other threads:[~2026-09-25 15:02 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-11  7:01 [PATCH 0/3] clk: socfpga: convert clock managers " adrian.ho.yin.ng
2026-09-11  7:01 ` [PATCH 1/3] clk: socfpga: agilex: convert " adrian.ho.yin.ng
2026-09-18 22:42   ` Brian Masney
2026-09-21  3:17     ` Ng, Adrian Ho Yin
2026-09-21 14:52       ` Brian Masney
2026-09-21 16:59         ` Dinh Nguyen
2026-09-21 19:57           ` Brian Masney
2026-09-25  9:34       ` Jerome Brunet
2026-09-25 15:02         ` Dinh Nguyen [this message]
2026-09-11  7:01 ` [PATCH 2/3] clk: socfpga: agilex5: " adrian.ho.yin.ng
2026-09-11  7:01 ` [PATCH 3/3] clk: socfpga: stratix10: " adrian.ho.yin.ng
2026-09-18 16:56 ` [PATCH 0/3] clk: socfpga: convert clock managers " Dinh Nguyen

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=f45985ee-afbe-4c97-b2bd-3cec4a6bc54a@kernel.org \
    --to=dinguyen@kernel.org \
    --cc=adrian.ho.yin.ng@altera.com \
    --cc=bmasney@redhat.com \
    --cc=jbrunet@baylibre.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.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: 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

all inboxes | Powered by JetHome®