From: Kongyang Liu <seashell11234455@gmail.com>
To: u-boot@lists.denx.de
Cc: Arturs Artamonovs <arturs.artamonovs@analog.com>,
Caleb Connolly <caleb.connolly@linaro.org>,
Greg Malysa <greg.malysa@timesys.com>,
Ian Roberts <ian.roberts@timesys.com>,
Leo <ycliang@andestech.com>, Lukasz Majewski <lukma@denx.de>,
Marek Vasut <marek.vasut+renesas@mailbox.org>,
Michal Simek <michal.simek@amd.com>,
Nathan Barrett-Morrison <nathan.morrison@timesys.com>,
Rick Chen <rick@andestech.com>,
Samuel Holland <samuel@sholland.org>,
Sean Anderson <seanga2@gmail.com>,
Sumit Garg <sumit.garg@linaro.org>, Tom Rini <trini@konsulko.com>,
Utsav Agarwal <utsav.agarwal@analog.com>,
Vasileios Bimpikas <vasileios.bimpikas@analog.com>
Subject: [PATCH 0/4] clk: sophgo: milkv_duo: Add and enable clock controller driver
Date: Sun, 19 May 2024 23:07:06 +0800 [thread overview]
Message-ID: <20240519150736.13203-1-seashell11234455@gmail.com> (raw)
This series of patches introduces the clock controller driver for the Sophgo
CV1800B SoC, updates the device tree sources to use the new clock controller,
and enables the clock controller in the configuration for the Milk-V Duo board.
Kongyang Liu (4):
dt-bindings: clk: import header for clock controller of sophgo CV1800B
clk: sophgo: cv1800b: Add clock controller driver for cv1800b SoC
configs: milkv_duo: Enable clock controller
riscv: dts: sophgo: Replace device clocks with real clocks.
arch/riscv/dts/cv18xx.dtsi | 40 +-
configs/milkv_duo_defconfig | 9 +-
drivers/clk/Kconfig | 1 +
drivers/clk/Makefile | 1 +
drivers/clk/sophgo/Kconfig | 14 +
drivers/clk/sophgo/Makefile | 6 +
drivers/clk/sophgo/clk-common.h | 74 ++
drivers/clk/sophgo/clk-cv1800b.c | 794 ++++++++++++++++++++++
drivers/clk/sophgo/clk-cv1800b.h | 123 ++++
drivers/clk/sophgo/clk-ip.c | 594 ++++++++++++++++
drivers/clk/sophgo/clk-ip.h | 288 ++++++++
drivers/clk/sophgo/clk-pll.c | 284 ++++++++
drivers/clk/sophgo/clk-pll.h | 74 ++
include/dt-bindings/clock/sophgo,cv1800.h | 176 +++++
14 files changed, 2450 insertions(+), 28 deletions(-)
create mode 100644 drivers/clk/sophgo/Kconfig
create mode 100644 drivers/clk/sophgo/Makefile
create mode 100644 drivers/clk/sophgo/clk-common.h
create mode 100644 drivers/clk/sophgo/clk-cv1800b.c
create mode 100644 drivers/clk/sophgo/clk-cv1800b.h
create mode 100644 drivers/clk/sophgo/clk-ip.c
create mode 100644 drivers/clk/sophgo/clk-ip.h
create mode 100644 drivers/clk/sophgo/clk-pll.c
create mode 100644 drivers/clk/sophgo/clk-pll.h
create mode 100644 include/dt-bindings/clock/sophgo,cv1800.h
--
2.41.0
next reply other threads:[~2024-05-19 15:08 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-19 15:07 Kongyang Liu [this message]
2024-05-19 15:07 ` [PATCH 1/4] dt-bindings: clk: import header for clock controller of sophgo CV1800B Kongyang Liu
2024-05-19 15:07 ` [PATCH 2/4] clk: sophgo: cv1800b: Add clock controller driver for cv1800b SoC Kongyang Liu
2024-05-22 23:39 ` Yixun Lan
2024-05-23 5:38 ` Kongyang Liu
2024-05-19 15:07 ` [PATCH 3/4] configs: milkv_duo: Enable clock controller Kongyang Liu
2024-05-19 15:07 ` [PATCH 4/4] riscv: dts: sophgo: Replace device clocks with real clocks Kongyang Liu
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=20240519150736.13203-1-seashell11234455@gmail.com \
--to=seashell11234455@gmail.com \
--cc=arturs.artamonovs@analog.com \
--cc=caleb.connolly@linaro.org \
--cc=greg.malysa@timesys.com \
--cc=ian.roberts@timesys.com \
--cc=lukma@denx.de \
--cc=marek.vasut+renesas@mailbox.org \
--cc=michal.simek@amd.com \
--cc=nathan.morrison@timesys.com \
--cc=rick@andestech.com \
--cc=samuel@sholland.org \
--cc=seanga2@gmail.com \
--cc=sumit.garg@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=utsav.agarwal@analog.com \
--cc=vasileios.bimpikas@analog.com \
--cc=ycliang@andestech.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.