From: Elaine Zhang <zhangqing@rock-chips.com>
To: mturquette@baylibre.com, sboyd@kernel.org,
sugar.zhang@rock-chips.com, zhangqing@rock-chips.com,
heiko@sntech.de, robh@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-clk@vger.kernel.org, linux-rockchip@lists.infradead.org,
linux-kernel@vger.kernel.org, huangtao@rock-chips.com,
finley.xiao@rock-chips.com
Subject: [Resend PATCH v4 0/7] clk: rockchip: Add clock controller for the RV1126B and RK3506
Date: Tue, 21 Oct 2025 14:52:25 +0800 [thread overview]
Message-ID: <20251021065232.2201500-1-zhangqing@rock-chips.com> (raw)
Add yaml and dt-bindings for the RV1126B and RK3506.
RK3506 depend on patches 1/7 and 5/7, so it is merged and submitted.
Change in V4:
[PATCH v4 1/7]: No change
[PATCH v4 2/7]: remove label
[PATCH v4 3/7]: No change
[PATCH v4 4/7]: remove label,fix order
[PATCH v4 5/7]: No change
[PATCH v4 6/7]: Add yaml and dt-bindings for the RK3506
[PATCH v4 7/7]: Add clock controller for the RK3506
Change in V3:
[PATCH v3 1/5]: No change
[PATCH v3 2/5]: Fix define error
[PATCH v3 3/5]: update driver,fix errir
[PATCH v3 4/5]: fix error
[PATCH v3 5/5]: No change
Change in V2:
[PATCH v2 1/5]: update commit message, rename v2 to multi_pll
[PATCH v2 2/5]: Modify DT binding headers license
[PATCH v2 3/5]: update driver
[PATCH v2 4/5]: fix error
[PATCH v2 5/5]: update commit message
Elaine Zhang (6):
clk: rockchip: Implement rockchip_clk_register_armclk_multi_pll()
dt-bindings: clock, reset: Add support for rv1126b
clk: rockchip: Add clock controller for the RV1126B
dt-bindings: clock: Add support for rockchip pvtpll
clk: rockchip: add support for pvtpll clk
clk: rockchip: Add clock and reset driver for RK3506
Finley Xiao (1):
dt-bindings: clock: rockchip: Add RK3506 clock and reset unit
.../bindings/clock/rockchip,pvtpll.yaml | 100 ++
.../bindings/clock/rockchip,rk3506-cru.yaml | 45 +
.../bindings/clock/rockchip,rv1126b-cru.yaml | 52 +
drivers/clk/rockchip/Kconfig | 14 +
drivers/clk/rockchip/Makefile | 2 +
drivers/clk/rockchip/clk-cpu.c | 165 +++
drivers/clk/rockchip/clk-pvtpll.c | 925 ++++++++++++++
drivers/clk/rockchip/clk-rk3506.c | 871 +++++++++++++
drivers/clk/rockchip/clk-rv1126b.c | 1105 +++++++++++++++++
drivers/clk/rockchip/clk.c | 24 +
drivers/clk/rockchip/clk.h | 96 ++
drivers/clk/rockchip/rst-rk3506.c | 226 ++++
drivers/clk/rockchip/rst-rv1126b.c | 444 +++++++
.../dt-bindings/clock/rockchip,rk3506-cru.h | 285 +++++
.../dt-bindings/clock/rockchip,rv1126b-cru.h | 392 ++++++
.../dt-bindings/reset/rockchip,rk3506-cru.h | 211 ++++
.../dt-bindings/reset/rockchip,rv1126b-cru.h | 405 ++++++
17 files changed, 5362 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/rockchip,pvtpll.yaml
create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3506-cru.yaml
create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rv1126b-cru.yaml
create mode 100644 drivers/clk/rockchip/clk-pvtpll.c
create mode 100644 drivers/clk/rockchip/clk-rk3506.c
create mode 100644 drivers/clk/rockchip/clk-rv1126b.c
create mode 100644 drivers/clk/rockchip/rst-rk3506.c
create mode 100644 drivers/clk/rockchip/rst-rv1126b.c
create mode 100644 include/dt-bindings/clock/rockchip,rk3506-cru.h
create mode 100644 include/dt-bindings/clock/rockchip,rv1126b-cru.h
create mode 100644 include/dt-bindings/reset/rockchip,rk3506-cru.h
create mode 100644 include/dt-bindings/reset/rockchip,rv1126b-cru.h
base-commit: 9893549e592ad22d0a18de97acfb30204109290a
--
2.34.1
next reply other threads:[~2025-10-21 7:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-21 6:52 Elaine Zhang [this message]
2025-10-21 6:52 ` [PATCH v4 1/7] clk: rockchip: Implement rockchip_clk_register_armclk_multi_pll() Elaine Zhang
2025-10-21 6:52 ` [PATCH v4 2/7] dt-bindings: clock, reset: Add support for rv1126b Elaine Zhang
2025-10-21 8:38 ` Heiko Stuebner
2025-10-22 3:21 ` zhangqing
2025-10-22 9:52 ` Heiko Stuebner
2025-10-23 8:43 ` [v4 " Markus Elfring
2025-10-21 6:52 ` [PATCH v4 3/7] clk: rockchip: Add clock controller for the RV1126B Elaine Zhang
2025-10-21 6:52 ` [PATCH v4 4/7] dt-bindings: clock: Add support for rockchip pvtpll Elaine Zhang
2025-10-21 13:48 ` Heiko Stuebner
2025-10-21 6:52 ` [PATCH v4 5/7] clk: rockchip: add support for pvtpll clk Elaine Zhang
2025-10-21 13:47 ` Heiko Stuebner
2025-10-22 3:44 ` zhangqing
2025-10-21 6:52 ` [PATCH v4 6/7] dt-bindings: clock: rockchip: Add RK3506 clock and reset unit Elaine Zhang
2025-10-21 8:36 ` Heiko Stuebner
2025-10-24 7:14 ` Krzysztof Kozlowski
2025-10-21 6:52 ` [PATCH v4 7/7] clk: rockchip: Add clock and reset driver for RK3506 Elaine Zhang
2025-10-21 6:55 ` [Resend PATCH v4 0/7] clk: rockchip: Add clock controller for the RV1126B and RK3506 Heiko Stuebner
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=20251021065232.2201500-1-zhangqing@rock-chips.com \
--to=zhangqing@rock-chips.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=finley.xiao@rock-chips.com \
--cc=heiko@sntech.de \
--cc=huangtao@rock-chips.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=mturquette@baylibre.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=sugar.zhang@rock-chips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox