From: Heiko Stuebner <heiko@sntech.de>
To: mturquette@baylibre.com, Stephen Boyd <sboyd@kernel.org>
Cc: linux-clk@vger.kernel.org, linux-rockchip@lists.infradead.org
Subject: [GIT PULL] Rockchip clock changes for 6.12 #1
Date: Sun, 08 Sep 2024 23:51:56 +0200 [thread overview]
Message-ID: <2436757.DCRlREXTYf@diego> (raw)
Hi Mike, Stephen,
please find below a pull-request with some Rockchip clock changes for 6.12
Please pull.
Thanks
Heiko
The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:
Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v6.12-rockchip-clk1
for you to fetch changes up to 12fd64babaca4dc09d072f63eda76ba44119816a:
clk: rockchip: fix error for unknown clocks (2024-08-30 16:59:24 +0200)
----------------------------------------------------------------
Getting rid of the rest of CLK_NR_CLKS defines that reported the
the max number of clocks, but should never have been part of the
devicetree binding header.
New clock controller driver for the rk3576.
And some fixes for rk3228 and rk3588.
----------------------------------------------------------------
Alexander Shiyan (1):
clk: rockchip: rk3588: Fix 32k clock name for pmu_24m_32k_100m_src_p
Detlev Casanova (1):
dt-bindings: clock, reset: Add support for rk3576
Elaine Zhang (2):
clk: rockchip: Add new pll type pll_rk3588_ddr
clk: rockchip: Add clock controller for the RK3576
Johan Jonker (9):
clk: rockchip: px30: Drop CLK_NR_CLKS CLKPMU_NR_CLKS usage
clk: rockchip: rk3036: Drop CLK_NR_CLKS usage
clk: rockchip: rk3228: Drop CLK_NR_CLKS usage
clk: rockchip: rk3288: Drop CLK_NR_CLKS usage
clk: rockchip: rk3308: Drop CLK_NR_CLKS usage
clk: rockchip: rk3328: Drop CLK_NR_CLKS usage
clk: rockchip: rk3368: Drop CLK_NR_CLKS usage
clk: rockchip: rk3399: Drop CLK_NR_CLKS CLKPMU_NR_CLKS usage
dt-bindings: clock: rockchip: remove CLK_NR_CLKS and CLKPMU_NR_CLKS
Jonas Karlman (1):
clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228
Krzysztof Kozlowski (1):
dt-bindings: clock: rockchip,rk3588-cru: drop unneeded assigned-clocks
Sebastian Reichel (2):
clk: rockchip: rk3588: drop unused code
clk: rockchip: fix error for unknown clocks
.../bindings/clock/rockchip,rk3576-cru.yaml | 56 +
.../bindings/clock/rockchip,rk3588-cru.yaml | 4 -
drivers/clk/rockchip/Kconfig | 7 +
drivers/clk/rockchip/Makefile | 1 +
drivers/clk/rockchip/clk-pll.c | 6 +-
drivers/clk/rockchip/clk-px30.c | 10 +-
drivers/clk/rockchip/clk-rk3036.c | 5 +-
drivers/clk/rockchip/clk-rk3228.c | 7 +-
drivers/clk/rockchip/clk-rk3288.c | 5 +-
drivers/clk/rockchip/clk-rk3308.c | 5 +-
drivers/clk/rockchip/clk-rk3328.c | 5 +-
drivers/clk/rockchip/clk-rk3368.c | 5 +-
drivers/clk/rockchip/clk-rk3399.c | 10 +-
drivers/clk/rockchip/clk-rk3576.c | 1820 ++++++++++++++++++++
drivers/clk/rockchip/clk-rk3588.c | 42 +-
drivers/clk/rockchip/clk.c | 3 +-
drivers/clk/rockchip/clk.h | 54 +
drivers/clk/rockchip/rst-rk3576.c | 651 +++++++
include/dt-bindings/clock/px30-cru.h | 4 -
include/dt-bindings/clock/rk3036-cru.h | 2 -
include/dt-bindings/clock/rk3228-cru.h | 2 -
include/dt-bindings/clock/rk3288-cru.h | 2 -
include/dt-bindings/clock/rk3308-cru.h | 2 -
include/dt-bindings/clock/rk3328-cru.h | 2 -
include/dt-bindings/clock/rk3368-cru.h | 2 -
include/dt-bindings/clock/rk3399-cru.h | 4 -
include/dt-bindings/clock/rockchip,rk3576-cru.h | 592 +++++++
include/dt-bindings/reset/rockchip,rk3576-cru.h | 564 ++++++
28 files changed, 3794 insertions(+), 78 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3576-cru.yaml
create mode 100644 drivers/clk/rockchip/clk-rk3576.c
create mode 100644 drivers/clk/rockchip/rst-rk3576.c
create mode 100644 include/dt-bindings/clock/rockchip,rk3576-cru.h
create mode 100644 include/dt-bindings/reset/rockchip,rk3576-cru.h
next reply other threads:[~2024-09-08 21:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-08 21:51 Heiko Stuebner [this message]
2024-09-09 21:04 ` [GIT PULL] Rockchip clock changes for 6.12 #1 Stephen Boyd
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=2436757.DCRlREXTYf@diego \
--to=heiko@sntech.de \
--cc=linux-clk@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=mturquette@baylibre.com \
--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