public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] clk: stub: add sm8150 compatible id
@ 2024-10-09  9:49 Julius Lehmann
  2024-10-09  9:50 ` neil.armstrong
  2024-10-09 13:34 ` Julius Lehmann
  0 siblings, 2 replies; 3+ messages in thread
From: Julius Lehmann @ 2024-10-09  9:49 UTC (permalink / raw)
  To: Lukasz Majewski, Sean Anderson, Tom Rini, Caleb Connolly
  Cc: u-boot, Julius Lehmann

Add support for sm8150 clock controller to clk stub driver.

---
Simple patch to extend the clk stub driver to support binding to sm8150 clock controllers.

Signed-off-by: Julius Lehmann <lehmanju@devpi.de>
---
 drivers/clk/clk-stub.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/clk-stub.c b/drivers/clk/clk-stub.c
index ea817031fa6c0cc1ea21000273b5651be5d05e65..76df9e3aba0e664fdaab8431f7909dda52ceb795 100644
--- a/drivers/clk/clk-stub.c
+++ b/drivers/clk/clk-stub.c
@@ -50,6 +50,7 @@ static struct clk_ops stub_clk_ops = {
 
 static const struct udevice_id stub_clk_ids[] = {
 	{ .compatible = "qcom,rpmcc" },
+	{ .compatible = "qcom,sm8150-rpmh-clk" }
 	{ .compatible = "qcom,sm8250-rpmh-clk" },
 	{ .compatible = "qcom,sm8550-rpmh-clk" },
 	{ .compatible = "qcom,sm8650-rpmh-clk" },

---
base-commit: d0f74bd417daf6492975ce346843ba0767caf51c
change-id: 20241009-clk-stub-sm8150-b7a29e0f43ba
prerequisite-message-id: 20240909-b4-clk-stub-v3-0-ef09307534d5@linaro.org
prerequisite-patch-id: 01b791d83c26250b3ff485045b88d5889f911bb8
prerequisite-patch-id: 66febbc73195c71535e2423d14f1ff6994ac36cd

Best regards,
-- 
Julius Lehmann <lehmanju@devpi.de>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] clk: stub: add sm8150 compatible id
  2024-10-09  9:49 [PATCH] clk: stub: add sm8150 compatible id Julius Lehmann
@ 2024-10-09  9:50 ` neil.armstrong
  2024-10-09 13:34 ` Julius Lehmann
  1 sibling, 0 replies; 3+ messages in thread
From: neil.armstrong @ 2024-10-09  9:50 UTC (permalink / raw)
  To: Julius Lehmann, Lukasz Majewski, Sean Anderson, Tom Rini,
	Caleb Connolly
  Cc: u-boot

On 09/10/2024 11:49, Julius Lehmann wrote:
> Add support for sm8150 clock controller to clk stub driver.
> 
> ---
> Simple patch to extend the clk stub driver to support binding to sm8150 clock controllers.
> 
> Signed-off-by: Julius Lehmann <lehmanju@devpi.de>
> ---
>   drivers/clk/clk-stub.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/clk-stub.c b/drivers/clk/clk-stub.c
> index ea817031fa6c0cc1ea21000273b5651be5d05e65..76df9e3aba0e664fdaab8431f7909dda52ceb795 100644
> --- a/drivers/clk/clk-stub.c
> +++ b/drivers/clk/clk-stub.c
> @@ -50,6 +50,7 @@ static struct clk_ops stub_clk_ops = {
>   
>   static const struct udevice_id stub_clk_ids[] = {
>   	{ .compatible = "qcom,rpmcc" },
> +	{ .compatible = "qcom,sm8150-rpmh-clk" }
>   	{ .compatible = "qcom,sm8250-rpmh-clk" },
>   	{ .compatible = "qcom,sm8550-rpmh-clk" },
>   	{ .compatible = "qcom,sm8650-rpmh-clk" },
> 
> ---
> base-commit: d0f74bd417daf6492975ce346843ba0767caf51c
> change-id: 20241009-clk-stub-sm8150-b7a29e0f43ba
> prerequisite-message-id: 20240909-b4-clk-stub-v3-0-ef09307534d5@linaro.org
> prerequisite-patch-id: 01b791d83c26250b3ff485045b88d5889f911bb8
> prerequisite-patch-id: 66febbc73195c71535e2423d14f1ff6994ac36cd
> 
> Best regards,

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] clk: stub: add sm8150 compatible id
  2024-10-09  9:49 [PATCH] clk: stub: add sm8150 compatible id Julius Lehmann
  2024-10-09  9:50 ` neil.armstrong
@ 2024-10-09 13:34 ` Julius Lehmann
  1 sibling, 0 replies; 3+ messages in thread
From: Julius Lehmann @ 2024-10-09 13:34 UTC (permalink / raw)
  To: Lukasz Majewski, Sean Anderson, Tom Rini, Caleb Connolly; +Cc: u-boot

On 09.10.24 11:49, Julius Lehmann wrote:
> Add support for sm8150 clock controller to clk stub driver.
>
> ---
> Simple patch to extend the clk stub driver to support binding to sm8150 clock controllers.
>
> Signed-off-by: Julius Lehmann <lehmanju@devpi.de>
> ---
>   drivers/clk/clk-stub.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/clk/clk-stub.c b/drivers/clk/clk-stub.c
> index ea817031fa6c0cc1ea21000273b5651be5d05e65..76df9e3aba0e664fdaab8431f7909dda52ceb795 100644
> --- a/drivers/clk/clk-stub.c
> +++ b/drivers/clk/clk-stub.c
> @@ -50,6 +50,7 @@ static struct clk_ops stub_clk_ops = {
>   
>   static const struct udevice_id stub_clk_ids[] = {
>   	{ .compatible = "qcom,rpmcc" },
> +	{ .compatible = "qcom,sm8150-rpmh-clk" }
crap, missed a "," here, will fix this in v2
>   	{ .compatible = "qcom,sm8250-rpmh-clk" },
>   	{ .compatible = "qcom,sm8550-rpmh-clk" },
>   	{ .compatible = "qcom,sm8650-rpmh-clk" },
>
> ---
> base-commit: d0f74bd417daf6492975ce346843ba0767caf51c
> change-id: 20241009-clk-stub-sm8150-b7a29e0f43ba
> prerequisite-message-id: 20240909-b4-clk-stub-v3-0-ef09307534d5@linaro.org
> prerequisite-patch-id: 01b791d83c26250b3ff485045b88d5889f911bb8
> prerequisite-patch-id: 66febbc73195c71535e2423d14f1ff6994ac36cd
>
> Best regards,

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-10-09 13:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-09  9:49 [PATCH] clk: stub: add sm8150 compatible id Julius Lehmann
2024-10-09  9:50 ` neil.armstrong
2024-10-09 13:34 ` Julius Lehmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox