From: "Stefan Dösinger" <stefandoesinger@gmail.com>
To: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Brian Masney <bmasney@redhat.com>,
Philipp Zabel <p.zabel@pengutronix.de>
Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH RFC v3 0/5] ZTE zx297520v3 clock bindings and driver
Date: Tue, 09 Jun 2026 19:42:02 +0300 [thread overview]
Message-ID: <QsCV4VffTSWWBp014o7Pkg@gmail.com> (raw)
In-Reply-To: <f92114a3658185b57bffe546c0f4079a9d39afce.camel@pengutronix.de>
[-- Attachment #1: Type: text/plain, Size: 3484 bytes --]
Hi Philipp,
I did some more reading and checked past clock driver submissions. This email
is to check if I understood it right.
Am Donnerstag, 4. Juni 2026, 18:23:01 Ostafrikanische Zeit schrieb Philipp
Zabel:
> > The register lock because all LSP and at least one TOP register contains
> > both clocks and resets.
>
> That could be solved with regmap.
This will require me to change the clk component to use regmaps too. There's
no regmap equivalent to clk-{div,gate,mux}.c, so I'll need my own. qcom and
meson have similar drivers already, so I'd likely copy one of them. Is there a
particular reason why there isn't a regmap equivalent of clk-{div,gate,mux}.c?
Another hypothetical solution is a custom regmap implementation that locks my
clk driver's lock. I see that only in imx/clk-imx8ulp-sim-lpav.c.
However, the topclk region also has a stray register that controls if a
watchdog timeout resets the board. So there's no good way past a syscon
compatible and syscon generated regmap anyway.
Afaics syscon regmaps only support a single IO region, so I'd likely revert
back to the topclk/matrixclk split with different bindings, bite the other
bullet and list all 50 or so PLL outputs as clocks passed from top to matrix.
Which gives a device tree setup like this:
topcrm: something@13b000 {
compatible = "zte,zx297520v3-topcrm", "syscon", "simple-mfd";
reg = <0x0013b000 0x400>;
#address-cells = <1>;
#size-cells = <1>;
ranges;
topclk: clock-controller@0 {
compatible = "zte,zx297520v3-topclk";
reg = <0x0 0x400>;
#clock-cells = <1>;
#reset-cells = <1>;
clocks = <&osc26m>, <&osc32k>;
clock-names = "osc26m", "osc32k";
};
reboot {
compatible = "syscon-reboot";
offset = <0x0>;
mask = <0x1>;
};
};
watchdog_t18: watchdog@148000 {
compatible = "zte,zx297520-wdt";
reg = <0x00148000 0x20>;
clocks = <&topclk ZX297520V3_WDT_T18_WCLK>, <&topclk
ZX297520V3_WDT_T18_PCLK>;
clock-names = "wclk", "pclk";
resets = <&topclk ZX297520V3_WDT_T18_RESET>;
zte,wdt-reset-sysctrl = <&topcrm 0x2c 0x3 0x3>;
};
(I did not attempt to build this, might have typos)
And the reset controller will be an aux-bus child of the clock controller. I
could make the reset controller its own device with its own bindings, but that
would misrepresent the hardware.
Did I understand this correctly?
For some reason in my dev tree the reset sysctrl works even though my clock
driver does not use the syscon compatible nor manually create a regmap.
> > Shared register definition: in the case of the LSP clocks breaking up the
> > composite definition would sacrifice readability.
>
> That is a matter of perspective.
>
> I had a harder time validating that the resets[] array is properly
> initialized from the two different composite arrays because of the
> unordered reset_ids, and some remaining resets[] being filled via code.
I do have a sanity check loop for that.
> It would be much simpler if you split the reset definitions out into a
> single, separate, const array, indexed by reset id. In fact,
> I would suggest this even if you don't intend to move the reset code.
I had to collect the clocks and resets from all over ZTE's kernel and U-Boot
sources plus manual testing, so maybe I am a bit too attached to seeing all
controls for a given device in one place. If the reset controls move to a
different file, the composite structure becomes less useful, so I'll probably
split it up and just list single div, gates and regs.
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 870 bytes --]
prev parent reply other threads:[~2026-06-09 16:42 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-28 21:52 [PATCH RFC v3 0/5] ZTE zx297520v3 clock bindings and driver Stefan Dösinger
2026-05-28 21:52 ` [PATCH RFC v3 1/5] dt-bindings: clk: zte: Add zx297520v3 top clock and reset bindings Stefan Dösinger
2026-05-29 16:48 ` Conor Dooley
2026-06-02 19:09 ` Stefan Dösinger
2026-06-02 23:14 ` Conor Dooley
2026-05-28 21:52 ` [PATCH RFC v3 2/5] dt-bindings: clk: zte: Add zx297520v3 LSP " Stefan Dösinger
2026-05-29 16:49 ` Conor Dooley
2026-05-28 21:53 ` [PATCH RFC v3 3/5] clk: zte: Introduce a driver for zx297520v3 top clocks and resets Stefan Dösinger
2026-06-03 9:14 ` Philipp Zabel
2026-06-03 20:49 ` Stefan Dösinger
2026-06-04 13:44 ` Philipp Zabel
2026-05-28 21:53 ` [PATCH RFC v3 4/5] clk: zte: Introduce a driver for zx297520v3 LSP " Stefan Dösinger
2026-05-28 21:53 ` [PATCH RFC v3 5/5] ARM: dts: zte: Declare a zx297520v3 clock device nodes Stefan Dösinger
2026-06-03 8:50 ` [PATCH RFC v3 0/5] ZTE zx297520v3 clock bindings and driver Philipp Zabel
2026-06-03 20:49 ` Stefan Dösinger
2026-06-04 15:23 ` Philipp Zabel
2026-06-09 16:42 ` Stefan Dösinger [this message]
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=QsCV4VffTSWWBp014o7Pkg@gmail.com \
--to=stefandoesinger@gmail.com \
--cc=bmasney@redhat.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=p.zabel@pengutronix.de \
--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