U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] clk: sophgo: milkv_duo: Add and enable clock controller driver
@ 2024-06-11  9:41 Kongyang Liu
  2024-06-11  9:41 ` [PATCH v2 1/4] dt-bindings: clk: import header for clock controller of sophgo CV1800B Kongyang Liu
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Kongyang Liu @ 2024-06-11  9:41 UTC (permalink / raw)
  To: u-boot
  Cc: Andre Przywara, Arturs Artamonovs, Caleb Connolly, Greg Malysa,
	Leo, Lukasz Majewski, Marek Vasut, Michal Simek,
	Nathan Barrett-Morrison, Rick Chen, Samuel Holland, Sean Anderson,
	Sumit Garg, Tom Rini, Utsav Agarwal, Vasileios Bimpikas

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.

Changes in v2:
- Fix compilation error
- Remove unused code

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          | 754 ++++++++++++++++++++++
 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              | 275 ++++++++
 drivers/clk/sophgo/clk-pll.h              |  74 +++
 include/dt-bindings/clock/sophgo,cv1800.h | 176 +++++
 14 files changed, 2401 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


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-09-09  6:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11  9:41 [PATCH v2 0/4] clk: sophgo: milkv_duo: Add and enable clock controller driver Kongyang Liu
2024-06-11  9:41 ` [PATCH v2 1/4] dt-bindings: clk: import header for clock controller of sophgo CV1800B Kongyang Liu
2024-09-09  6:00   ` Leo Liang
2024-06-11  9:41 ` [PATCH v2 2/4] clk: sophgo: cv1800b: Add clock controller driver for cv1800b SoC Kongyang Liu
2024-09-09  6:02   ` Leo Liang
2024-06-11  9:41 ` [PATCH v2 3/4] configs: milkv_duo: Enable clock controller Kongyang Liu
2024-09-09  6:02   ` Leo Liang
2024-06-11  9:41 ` [PATCH v2 4/4] riscv: dts: sophgo: Replace device clocks with real clocks Kongyang Liu
2024-09-09  6:03   ` Leo Liang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox