From: Stephen Boyd <sboyd@kernel.org>
To: Conor Dooley <conor+dt@kernel.org>,
Harry Austen <hpausten@protonmail.com>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Michal Simek <michal.simek@amd.com>,
Rob Herring <robh@kernel.org>
Cc: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>,
linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Harry Austen <hpausten@protonmail.com>
Subject: Re: [PATCH 6/6] clk: clocking-wizard: move dynamic reconfig setup behind flag
Date: Thu, 05 Sep 2024 12:06:05 -0700 [thread overview]
Message-ID: <0161bb1640489c7a677ac26967b65ee1.sboyd@kernel.org> (raw)
In-Reply-To: <20240831111056.3864-7-hpausten@protonmail.com>
Quoting Harry Austen (2024-08-31 04:13:26)
> diff --git a/drivers/clk/xilinx/clk-xlnx-clock-wizard.c b/drivers/clk/xilinx/clk-xlnx-clock-wizard.c
> index 1a65a7d153c35..967eacc28050d 100644
> --- a/drivers/clk/xilinx/clk-xlnx-clock-wizard.c
> +++ b/drivers/clk/xilinx/clk-xlnx-clock-wizard.c
> @@ -1146,20 +1146,6 @@ static int clk_wzrd_probe(struct platform_device *pdev)
> if (IS_ERR(clk_wzrd->base))
> return PTR_ERR(clk_wzrd->base);
>
> - ret = of_property_read_u32(np, "xlnx,speed-grade", &clk_wzrd->speed_grade);
> - if (!ret) {
> - if (clk_wzrd->speed_grade < 1 || clk_wzrd->speed_grade > 3) {
> - dev_warn(&pdev->dev, "invalid speed grade '%d'\n",
> - clk_wzrd->speed_grade);
> - clk_wzrd->speed_grade = 0;
> - }
> - }
> -
> - clk_wzrd->clk_in1 = devm_clk_get(&pdev->dev, "clk_in1");
> - if (IS_ERR(clk_wzrd->clk_in1))
> - return dev_err_probe(&pdev->dev, PTR_ERR(clk_wzrd->clk_in1),
> - "clk_in1 not found\n");
> -
> clk_wzrd->axi_clk = devm_clk_get_enabled(&pdev->dev, "s_axi_aclk");
> if (IS_ERR(clk_wzrd->axi_clk))
> return dev_err_probe(&pdev->dev, PTR_ERR(clk_wzrd->axi_clk),
> @@ -1170,31 +1156,48 @@ static int clk_wzrd_probe(struct platform_device *pdev)
> return -EINVAL;
> }
>
> - ret = clk_wzrd_register_output_clocks(&pdev->dev, nr_outputs);
> - if (ret)
> - return ret;
> -
> - clk_wzrd->clk_data.num = nr_outputs;
> - ret = devm_of_clk_add_hw_provider(&pdev->dev, of_clk_hw_onecell_get, &clk_wzrd->clk_data);
> - if (ret) {
> - dev_err(&pdev->dev, "unable to register clock provider\n");
> - return ret;
> - }
> + if (of_property_read_bool(np, "xlnx,dynamic-reconfig")) {
Is this going to break the existing DTBs? Before the property existed,
the driver seems to have always tried to read xlnx,speed-grade and then
setup a notifier, etc. Why would xlnx,speed-grade be set if
xlnx,dynamic-reconfig wasn't set?
The binding has implicitly had xlnx,dynamic-reconfig set before this
patch, and we should strive to maintain that. Perhaps the property
should be inverted, i.e. xlnx,static-config, and the absence of that
property can imply the reconfig property.
next prev parent reply other threads:[~2024-09-05 19:06 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-31 11:12 [PATCH 0/6] clk: clocking-wizard: modernize probe Harry Austen
2024-08-31 11:12 ` [PATCH 1/6] clk: clocking-wizard: simplify probe/remove with devres helpers Harry Austen
2024-08-31 11:12 ` [PATCH 2/6] clk: clocking-wizard: use newer clk_hw API Harry Austen
2024-08-31 11:13 ` [PATCH 3/6] clk: clocking-wizard: use devres versions of " Harry Austen
2024-08-31 11:13 ` [PATCH 4/6] clk: clocking-wizard: move clock registration to separate function Harry Austen
2024-08-31 11:13 ` [PATCH 5/6] dt-bindings: clock: xilinx: describe whether dynamic reconfig is enabled Harry Austen
2024-08-31 11:13 ` [PATCH 6/6] clk: clocking-wizard: move dynamic reconfig setup behind flag Harry Austen
2024-09-05 19:06 ` Stephen Boyd [this message]
2024-09-06 8:13 ` Harry Austen
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=0161bb1640489c7a677ac26967b65ee1.sboyd@kernel.org \
--to=sboyd@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=hpausten@protonmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.simek@amd.com \
--cc=mturquette@baylibre.com \
--cc=robh@kernel.org \
--cc=shubhrajyoti.datta@amd.com \
/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®