All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] clk: sophgo: milkv_duo: Add and enable clock controller driver
@ 2024-05-19 15:07 Kongyang Liu
  2024-05-19 15:07 ` [PATCH 1/4] dt-bindings: clk: import header for clock controller of sophgo CV1800B Kongyang Liu
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Kongyang Liu @ 2024-05-19 15:07 UTC (permalink / raw)
  To: u-boot
  Cc: Arturs Artamonovs, Caleb Connolly, Greg Malysa, Ian Roberts, 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.


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


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

end of thread, other threads:[~2024-05-23  5:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-19 15:07 [PATCH 0/4] clk: sophgo: milkv_duo: Add and enable clock controller driver Kongyang Liu
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

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.