From: Drew Fustini <dfustini@baylibre.com>
To: Jisheng Zhang <jszhang@kernel.org>
Cc: Yangtao Li <frank.li@vivo.com>,
devicetree@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
sboyd@kernel.org, mturquette@baylibre.com,
linux-kernel@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
Wei Fu <wefu@redhat.com>
Subject: Re: [PATCH 2/3] clk: thead: add support for the T-HEAD TH1520 CCU
Date: Sun, 3 Sep 2023 15:37:30 -0700 [thread overview]
Message-ID: <ZPUKqsEglxC5+Ocb@x1> (raw)
In-Reply-To: <ZOsnYagqFz6atfw2@xhacker>
On Sun, Aug 27, 2023 at 06:37:21PM +0800, Jisheng Zhang wrote:
> On Mon, May 15, 2023 at 01:44:00PM +0800, Yangtao Li wrote:
> > Add support for th1520 in the clock framework.
>
> Hi Yangtao,
>
> I didn't see any new version of this series in this development window,
> and we have already talked about it several times on wechat, so do
> you still plan to renew this series? If not, I will update it and may
> rewrite the code once next development window is open.
>
> Thanks in advance
I tried this clock driver on the BeagleV Ahead board and I got the
following during boot [1]:
__clk_core_init: ahb2 must implement .set_parent & .determine_rate
th1520-clk: probe of ffef010000.clock-controller failed with error -22
I am guessing this has to do with how ahb2_clk is defined?
432 static struct ccu_div ahb2_clk = {
433 .div = TH_CCU_DIV_FLAGS(0, 3, CLK_DIVIDER_ONE_BASED),
434 .mux = TH_CCU_ARG(5, 1),
435 .common = {
436 .reg = 0x120,
437 .hw.init = CLK_HW_INIT_PARENTS("ahb2",
438 ahb2_parents,
439 &ccu_div_ops,
440 0),
441 },
442 };
It passes ccu_div_ops in CLK_HW_INIT_PARENTS(). ccu_div_ops does
implement .set_parent but it doesn't implement .determine_rate. Maybe
that is the problem?
Yangtao or Jisheng: would you be able to share the device tree you're
using?
I added this based on the example in the device tree binding:
=============================================================
diff --git a/arch/riscv/boot/dts/thead/th1520.dtsi b/arch/riscv/boot/dts/thead/th1520.dtsi
index 18761a06c866..8153bf73e8c0 100644
--- a/arch/riscv/boot/dts/thead/th1520.dtsi
+++ b/arch/riscv/boot/dts/thead/th1520.dtsi
@@ -313,6 +313,14 @@ dmac0: dma-controller@ffefc00000 {
status = "disabled";
};
+ clk: clock-controller@ffef010000 {
+ compatible = "thead,th1520-ccu";
+ reg = <0xff 0xef010000 0x0 0x1000>;
+ clocks = <&osc_32k>, <&osc>;
+ clock-names = "losc", "hosc";
+ #clock-cells = <1>;
+ };
+
mmc0: mmc@ffe7080000 {
compatible = "thead,th1520-dwcmshc";
reg = <0xff 0xe7080000 0x0 0x10000
=============================================================
Thank you,
Drew
[1] https://gist.github.com/pdp7/b585a6dad5134fc8773e53ad48600fef
WARNING: multiple messages have this Message-ID (diff)
From: Drew Fustini <dfustini@baylibre.com>
To: Jisheng Zhang <jszhang@kernel.org>
Cc: Yangtao Li <frank.li@vivo.com>,
devicetree@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
sboyd@kernel.org, mturquette@baylibre.com,
linux-kernel@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
Wei Fu <wefu@redhat.com>
Subject: Re: [PATCH 2/3] clk: thead: add support for the T-HEAD TH1520 CCU
Date: Sun, 3 Sep 2023 15:37:30 -0700 [thread overview]
Message-ID: <ZPUKqsEglxC5+Ocb@x1> (raw)
In-Reply-To: <ZOsnYagqFz6atfw2@xhacker>
On Sun, Aug 27, 2023 at 06:37:21PM +0800, Jisheng Zhang wrote:
> On Mon, May 15, 2023 at 01:44:00PM +0800, Yangtao Li wrote:
> > Add support for th1520 in the clock framework.
>
> Hi Yangtao,
>
> I didn't see any new version of this series in this development window,
> and we have already talked about it several times on wechat, so do
> you still plan to renew this series? If not, I will update it and may
> rewrite the code once next development window is open.
>
> Thanks in advance
I tried this clock driver on the BeagleV Ahead board and I got the
following during boot [1]:
__clk_core_init: ahb2 must implement .set_parent & .determine_rate
th1520-clk: probe of ffef010000.clock-controller failed with error -22
I am guessing this has to do with how ahb2_clk is defined?
432 static struct ccu_div ahb2_clk = {
433 .div = TH_CCU_DIV_FLAGS(0, 3, CLK_DIVIDER_ONE_BASED),
434 .mux = TH_CCU_ARG(5, 1),
435 .common = {
436 .reg = 0x120,
437 .hw.init = CLK_HW_INIT_PARENTS("ahb2",
438 ahb2_parents,
439 &ccu_div_ops,
440 0),
441 },
442 };
It passes ccu_div_ops in CLK_HW_INIT_PARENTS(). ccu_div_ops does
implement .set_parent but it doesn't implement .determine_rate. Maybe
that is the problem?
Yangtao or Jisheng: would you be able to share the device tree you're
using?
I added this based on the example in the device tree binding:
=============================================================
diff --git a/arch/riscv/boot/dts/thead/th1520.dtsi b/arch/riscv/boot/dts/thead/th1520.dtsi
index 18761a06c866..8153bf73e8c0 100644
--- a/arch/riscv/boot/dts/thead/th1520.dtsi
+++ b/arch/riscv/boot/dts/thead/th1520.dtsi
@@ -313,6 +313,14 @@ dmac0: dma-controller@ffefc00000 {
status = "disabled";
};
+ clk: clock-controller@ffef010000 {
+ compatible = "thead,th1520-ccu";
+ reg = <0xff 0xef010000 0x0 0x1000>;
+ clocks = <&osc_32k>, <&osc>;
+ clock-names = "losc", "hosc";
+ #clock-cells = <1>;
+ };
+
mmc0: mmc@ffe7080000 {
compatible = "thead,th1520-dwcmshc";
reg = <0xff 0xe7080000 0x0 0x10000
=============================================================
Thank you,
Drew
[1] https://gist.github.com/pdp7/b585a6dad5134fc8773e53ad48600fef
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2023-09-03 22:37 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-15 5:43 [PATCH 0/3] Add T-HEAD th1520 soc clock support Yangtao Li
2023-05-15 5:43 ` Yangtao Li
2023-05-15 5:43 ` [PATCH 1/3] dt-bindings: clock: Add thead th1520 clock Yangtao Li
2023-05-15 5:43 ` Yangtao Li
2023-05-15 6:22 ` Krzysztof Kozlowski
2023-05-15 6:22 ` Krzysztof Kozlowski
2023-05-15 6:26 ` Krzysztof Kozlowski
2023-05-15 6:26 ` Krzysztof Kozlowski
2023-05-15 5:44 ` [PATCH 2/3] clk: thead: add support for the T-HEAD TH1520 CCU Yangtao Li
2023-05-15 5:44 ` Yangtao Li
2023-05-15 6:27 ` Krzysztof Kozlowski
2023-05-15 6:27 ` Krzysztof Kozlowski
2023-06-13 1:35 ` Stephen Boyd
2023-06-13 1:35 ` Stephen Boyd
2023-08-27 10:37 ` Jisheng Zhang
2023-08-27 10:37 ` Jisheng Zhang
2023-09-03 22:37 ` Drew Fustini [this message]
2023-09-03 22:37 ` Drew Fustini
2023-05-15 5:44 ` [PATCH 3/3] MAINTAINERS: update entry for T-HEAD RISC-V SoC Yangtao Li
2023-05-15 5:44 ` Yangtao Li
2023-05-15 17:15 ` Conor Dooley
2023-05-15 17:15 ` Conor Dooley
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=ZPUKqsEglxC5+Ocb@x1 \
--to=dfustini@baylibre.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=frank.li@vivo.com \
--cc=jszhang@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=wefu@redhat.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 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.