From: Rob Herring <robh@kernel.org>
To: Yixun Lan <dlan@gentoo.org>
Cc: Linus Walleij <linus.walleij@linaro.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, spacemit@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] pinctrl: spacemit: add clock support for K1 SoC
Date: Sat, 12 Apr 2025 13:27:37 -0500 [thread overview]
Message-ID: <20250412182737.GA1425287-robh@kernel.org> (raw)
In-Reply-To: <20250412-02-k1-pinctrl-clk-v1-2-e39734419a2d@gentoo.org>
On Sat, Apr 12, 2025 at 02:58:11PM +0800, Yixun Lan wrote:
> For SpacemiT K1 SoC's pinctrl, explicitly acquiring clocks in
> the driver instead of relying on bootloader or default hardware
> settings to enable it.
>
> Signed-off-by: Yixun Lan <dlan@gentoo.org>
> ---
> drivers/pinctrl/spacemit/pinctrl-k1.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/pinctrl/spacemit/pinctrl-k1.c b/drivers/pinctrl/spacemit/pinctrl-k1.c
> index 67e867b04a02ea1887d93aedfdea5bda037f88b1..3805fb09c1bc3b8cf2ccfc22dd25367292b397b9 100644
> --- a/drivers/pinctrl/spacemit/pinctrl-k1.c
> +++ b/drivers/pinctrl/spacemit/pinctrl-k1.c
> @@ -2,6 +2,7 @@
> /* Copyright (c) 2024 Yixun Lan <dlan@gentoo.org> */
>
> #include <linux/bits.h>
> +#include <linux/clk.h>
> #include <linux/cleanup.h>
> #include <linux/io.h>
> #include <linux/of.h>
> @@ -721,6 +722,7 @@ static int spacemit_pinctrl_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> struct spacemit_pinctrl *pctrl;
> + struct clk *func_clk, *bus_clk;
> const struct spacemit_pinctrl_data *pctrl_data;
> int ret;
>
> @@ -739,6 +741,14 @@ static int spacemit_pinctrl_probe(struct platform_device *pdev)
> if (IS_ERR(pctrl->regs))
> return PTR_ERR(pctrl->regs);
>
> + func_clk = devm_clk_get_optional_enabled(dev, "func");
> + if (IS_ERR(func_clk))
> + return dev_err_probe(dev, PTR_ERR(func_clk), "failed to get func clock\n");
> +
> + bus_clk = devm_clk_get_optional_enabled(dev, "bus");
> + if (IS_ERR(bus_clk))
> + return dev_err_probe(dev, PTR_ERR(bus_clk), "failed to get bus clock\n");
Do you really need these to be optional? Yes, it maintains
compatibility, but if this platform isn't stable, then do you really
need that?
Rob
WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh@kernel.org>
To: Yixun Lan <dlan@gentoo.org>
Cc: Linus Walleij <linus.walleij@linaro.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, spacemit@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] pinctrl: spacemit: add clock support for K1 SoC
Date: Sat, 12 Apr 2025 13:27:37 -0500 [thread overview]
Message-ID: <20250412182737.GA1425287-robh@kernel.org> (raw)
In-Reply-To: <20250412-02-k1-pinctrl-clk-v1-2-e39734419a2d@gentoo.org>
On Sat, Apr 12, 2025 at 02:58:11PM +0800, Yixun Lan wrote:
> For SpacemiT K1 SoC's pinctrl, explicitly acquiring clocks in
> the driver instead of relying on bootloader or default hardware
> settings to enable it.
>
> Signed-off-by: Yixun Lan <dlan@gentoo.org>
> ---
> drivers/pinctrl/spacemit/pinctrl-k1.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/pinctrl/spacemit/pinctrl-k1.c b/drivers/pinctrl/spacemit/pinctrl-k1.c
> index 67e867b04a02ea1887d93aedfdea5bda037f88b1..3805fb09c1bc3b8cf2ccfc22dd25367292b397b9 100644
> --- a/drivers/pinctrl/spacemit/pinctrl-k1.c
> +++ b/drivers/pinctrl/spacemit/pinctrl-k1.c
> @@ -2,6 +2,7 @@
> /* Copyright (c) 2024 Yixun Lan <dlan@gentoo.org> */
>
> #include <linux/bits.h>
> +#include <linux/clk.h>
> #include <linux/cleanup.h>
> #include <linux/io.h>
> #include <linux/of.h>
> @@ -721,6 +722,7 @@ static int spacemit_pinctrl_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> struct spacemit_pinctrl *pctrl;
> + struct clk *func_clk, *bus_clk;
> const struct spacemit_pinctrl_data *pctrl_data;
> int ret;
>
> @@ -739,6 +741,14 @@ static int spacemit_pinctrl_probe(struct platform_device *pdev)
> if (IS_ERR(pctrl->regs))
> return PTR_ERR(pctrl->regs);
>
> + func_clk = devm_clk_get_optional_enabled(dev, "func");
> + if (IS_ERR(func_clk))
> + return dev_err_probe(dev, PTR_ERR(func_clk), "failed to get func clock\n");
> +
> + bus_clk = devm_clk_get_optional_enabled(dev, "bus");
> + if (IS_ERR(bus_clk))
> + return dev_err_probe(dev, PTR_ERR(bus_clk), "failed to get bus clock\n");
Do you really need these to be optional? Yes, it maintains
compatibility, but if this platform isn't stable, then do you really
need that?
Rob
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2025-04-12 18:27 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-12 6:58 [PATCH 0/2] pinctrl: spacemit: add clock/reset support Yixun Lan
2025-04-12 6:58 ` Yixun Lan
2025-04-12 6:58 ` [PATCH 1/2] dt-bindings: pinctrl: spacemit: add clock and reset property Yixun Lan
2025-04-12 6:58 ` Yixun Lan
2025-04-12 11:31 ` ALOK TIWARI
2025-04-12 11:31 ` ALOK TIWARI
2025-04-12 13:55 ` Yixun Lan
2025-04-12 13:55 ` Yixun Lan
2025-04-12 6:58 ` [PATCH 2/2] pinctrl: spacemit: add clock support for K1 SoC Yixun Lan
2025-04-12 6:58 ` Yixun Lan
2025-04-12 18:27 ` Rob Herring [this message]
2025-04-12 18:27 ` Rob Herring
2025-04-12 22:34 ` Yixun Lan
2025-04-12 22:34 ` Yixun Lan
2025-04-15 19:38 ` Rob Herring
2025-04-15 19:38 ` Rob Herring
2025-04-15 23:06 ` Yixun Lan
2025-04-15 23:06 ` Yixun Lan
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=20250412182737.GA1425287-robh@kernel.org \
--to=robh@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlan@gentoo.org \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=spacemit@lists.linux.dev \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.