From: Claudiu Beznea <claudiu.beznea@tuxon.dev>
To: Ryan.Wanner@microchip.com, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, nicolas.ferre@microchip.com,
alexandre.belloni@bootlin.com, mturquette@baylibre.com
Cc: sboyd@kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org
Subject: Re: [PATCH v2 1/4] clk: at91: sckc: Fix parent_data struct for slow osc
Date: Sat, 26 Apr 2025 16:36:26 +0300 [thread overview]
Message-ID: <22b722eb-5ef1-4542-a5b2-10222b4eb6c4@tuxon.dev> (raw)
In-Reply-To: <d470bb761530827889beaa2c2815e127fc8b412e.1742916867.git.Ryan.Wanner@microchip.com>
On 25.03.2025 17:55, Ryan.Wanner@microchip.com wrote:
> From: Ryan Wanner <Ryan.Wanner@microchip.com>
>
> The slow xtal is not described correctly as a parent, the driver looks for a
> "slow_xtal" string which is incorrect and will not work with the new
> formating of xtals.
>
> To avoid this and keep this driver backwards compatible the
> parent_data.fw_name is replaced with parent_data.name and the original
> parent_data.name is replaced with parent_data.index. Using the index is
> safe due to the driver requiring only 1 xtal.
>
> Fixes: 8aa1db9ccee0e ("clk: at91: sckc: switch to parent_data/parent_hw")
>
No need for this empty line.
> Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com>
> ---
> drivers/clk/at91/sckc.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/clk/at91/sckc.c b/drivers/clk/at91/sckc.c
> index 021d1b412af4..952a805b6f7e 100644
> --- a/drivers/clk/at91/sckc.c
> +++ b/drivers/clk/at91/sckc.c
> @@ -374,7 +374,7 @@ static void __init at91sam9x5_sckc_register(struct device_node *np,
> const char *xtal_name;
> struct clk_hw *slow_rc, *slow_osc, *slowck;
> static struct clk_parent_data parent_data = {
> - .name = "slow_xtal",
> + .index = 0,
> };
> const struct clk_hw *parent_hws[2];
> bool bypass;
> @@ -407,7 +407,7 @@ static void __init at91sam9x5_sckc_register(struct device_node *np,
> if (!xtal_name)
> goto unregister_slow_rc;
>
> - parent_data.fw_name = xtal_name;
> + parent_data.name = xtal_name;
>
> slow_osc = at91_clk_register_slow_osc(regbase, "slow_osc",
> &parent_data, 1200000, bypass, bits);
> @@ -476,7 +476,7 @@ static void __init of_sam9x60_sckc_setup(struct device_node *np)
> const char *xtal_name;
> const struct clk_hw *parent_hws[2];
> static struct clk_parent_data parent_data = {
> - .name = "slow_xtal",
> + .index = 0,
> };
> bool bypass;
> int ret;
> @@ -494,7 +494,7 @@ static void __init of_sam9x60_sckc_setup(struct device_node *np)
> if (!xtal_name)
> goto unregister_slow_rc;
>
> - parent_data.fw_name = xtal_name;
> + parent_data.name = xtal_name;
> bypass = of_property_read_bool(np, "atmel,osc-bypass");
> slow_osc = at91_clk_register_slow_osc(regbase, "slow_osc",
> &parent_data, 5000000, bypass,
> @@ -592,7 +592,7 @@ static void __init of_sama5d4_sckc_setup(struct device_node *np)
> const char *xtal_name;
> const struct clk_hw *parent_hws[2];
> static struct clk_parent_data parent_data = {
> - .name = "slow_xtal",
> + .index = 0,
> };
> int ret;
>
> @@ -609,7 +609,7 @@ static void __init of_sama5d4_sckc_setup(struct device_node *np)
> xtal_name = of_clk_get_parent_name(np, 0);
> if (!xtal_name)
> goto unregister_slow_rc;
> - parent_data.fw_name = xtal_name;
> + parent_data.name = xtal_name;
>
> osc = kzalloc(sizeof(*osc), GFP_KERNEL);
> if (!osc)
next prev parent reply other threads:[~2025-04-26 13:36 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-25 15:55 [PATCH v2 0/4] AT91 SAMA7 SoC Clock Adjustments Ryan.Wanner
2025-03-25 15:55 ` [PATCH v2 1/4] clk: at91: sckc: Fix parent_data struct for slow osc Ryan.Wanner
2025-04-26 13:36 ` Claudiu Beznea [this message]
2025-03-25 15:55 ` [PATCH v2 2/4] clk: at91: sama7d65: Add missing clk_hw to parent_data Ryan.Wanner
2025-04-26 13:35 ` Claudiu Beznea
2025-05-01 15:01 ` Ryan Wanner
2025-03-25 15:55 ` [PATCH v2 3/4] clk: at91: sama7g5: " Ryan.Wanner
2025-03-25 15:55 ` [PATCH v2 4/4] ARM: dts: microchip: sama7g5: Adjust clock xtal phandle Ryan.Wanner
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=22b722eb-5ef1-4542-a5b2-10222b4eb6c4@tuxon.dev \
--to=claudiu.beznea@tuxon.dev \
--cc=Ryan.Wanner@microchip.com \
--cc=alexandre.belloni@bootlin.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--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=mturquette@baylibre.com \
--cc=nicolas.ferre@microchip.com \
--cc=robh@kernel.org \
--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