All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yixun Lan <dlan@gentoo.org>
To: Stephen Boyd <sboyd@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>
Cc: spacemit@lists.linux.dev, linux-clk@vger.kernel.org,
	linux-riscv@lists.infradead.org, Haylen Chu <heylenay@4d2.org>,
	Inochi Amaoto <inochiama@gmail.com>,
	Alex Elder <elder@riscstar.com>
Subject: [GIT PULL] clk: spacemit: Add K1 SoC clk driver for v6.16
Date: Wed, 30 Apr 2025 01:29:41 +0000	[thread overview]
Message-ID: <20250430012941-GYA288294@gentoo> (raw)

Hi Stephen, Mike

  Here is clock driver added for SpacemiT K1 SoC, please pull for v6.16

Yixun Lan (dlan)

The following changes since commit 0af2f6be1b4281385b618cb86ad946eded089ac8:

  Linux 6.15-rc1 (2025-04-06 13:11:33 -0700)

are available in the Git repository at:

  https://github.com/spacemit-com/linux tags/spacemit-clk-for-6.16-1

for you to fetch changes up to 49625c6e4d90a9221127c49a11eb8c95732bb690:

  clk: spacemit: k1: Add TWSI8 bus and function clocks (2025-04-17 03:22:56 +0800)

----------------------------------------------------------------
RISC-V SpacemiT clock changes for 6.16

- Add clock driver for K1 SoC
- Add TWSI8 clock, workaround the read quirk

----------------------------------------------------------------
Haylen Chu (4):
      dt-bindings: soc: spacemit: Add spacemit,k1-syscon
      dt-bindings: clock: spacemit: Add spacemit,k1-pll
      clk: spacemit: Add clock support for SpacemiT K1 SoC
      clk: spacemit: k1: Add TWSI8 bus and function clocks

 .../devicetree/bindings/clock/spacemit,k1-pll.yaml |   50 +
 .../bindings/soc/spacemit/spacemit,k1-syscon.yaml  |   80 ++
 drivers/clk/Kconfig                                |    1 +
 drivers/clk/Makefile                               |    1 +
 drivers/clk/spacemit/Kconfig                       |   18 +
 drivers/clk/spacemit/Makefile                      |    5 +
 drivers/clk/spacemit/ccu-k1.c                      | 1164 ++++++++++++++++++++
 drivers/clk/spacemit/ccu_common.h                  |   48 +
 drivers/clk/spacemit/ccu_ddn.c                     |   83 ++
 drivers/clk/spacemit/ccu_ddn.h                     |   48 +
 drivers/clk/spacemit/ccu_mix.c                     |  268 +++++
 drivers/clk/spacemit/ccu_mix.h                     |  218 ++++
 drivers/clk/spacemit/ccu_pll.c                     |  157 +++
 drivers/clk/spacemit/ccu_pll.h                     |   86 ++
 include/dt-bindings/clock/spacemit,k1-syscon.h     |  247 +++++
 15 files changed, 2474 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/spacemit,k1-pll.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/spacemit/spacemit,k1-syscon.yaml
 create mode 100644 drivers/clk/spacemit/Kconfig
 create mode 100644 drivers/clk/spacemit/Makefile
 create mode 100644 drivers/clk/spacemit/ccu-k1.c
 create mode 100644 drivers/clk/spacemit/ccu_common.h
 create mode 100644 drivers/clk/spacemit/ccu_ddn.c
 create mode 100644 drivers/clk/spacemit/ccu_ddn.h
 create mode 100644 drivers/clk/spacemit/ccu_mix.c
 create mode 100644 drivers/clk/spacemit/ccu_mix.h
 create mode 100644 drivers/clk/spacemit/ccu_pll.c
 create mode 100644 drivers/clk/spacemit/ccu_pll.h
 create mode 100644 include/dt-bindings/clock/spacemit,k1-syscon.h

WARNING: multiple messages have this Message-ID (diff)
From: Yixun Lan <dlan@gentoo.org>
To: Stephen Boyd <sboyd@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>
Cc: spacemit@lists.linux.dev, linux-clk@vger.kernel.org,
	linux-riscv@lists.infradead.org, Haylen Chu <heylenay@4d2.org>,
	Inochi Amaoto <inochiama@gmail.com>,
	Alex Elder <elder@riscstar.com>
Subject: [GIT PULL] clk: spacemit: Add K1 SoC clk driver for v6.16
Date: Wed, 30 Apr 2025 01:29:41 +0000	[thread overview]
Message-ID: <20250430012941-GYA288294@gentoo> (raw)

Hi Stephen, Mike

  Here is clock driver added for SpacemiT K1 SoC, please pull for v6.16

Yixun Lan (dlan)

The following changes since commit 0af2f6be1b4281385b618cb86ad946eded089ac8:

  Linux 6.15-rc1 (2025-04-06 13:11:33 -0700)

are available in the Git repository at:

  https://github.com/spacemit-com/linux tags/spacemit-clk-for-6.16-1

for you to fetch changes up to 49625c6e4d90a9221127c49a11eb8c95732bb690:

  clk: spacemit: k1: Add TWSI8 bus and function clocks (2025-04-17 03:22:56 +0800)

----------------------------------------------------------------
RISC-V SpacemiT clock changes for 6.16

- Add clock driver for K1 SoC
- Add TWSI8 clock, workaround the read quirk

----------------------------------------------------------------
Haylen Chu (4):
      dt-bindings: soc: spacemit: Add spacemit,k1-syscon
      dt-bindings: clock: spacemit: Add spacemit,k1-pll
      clk: spacemit: Add clock support for SpacemiT K1 SoC
      clk: spacemit: k1: Add TWSI8 bus and function clocks

 .../devicetree/bindings/clock/spacemit,k1-pll.yaml |   50 +
 .../bindings/soc/spacemit/spacemit,k1-syscon.yaml  |   80 ++
 drivers/clk/Kconfig                                |    1 +
 drivers/clk/Makefile                               |    1 +
 drivers/clk/spacemit/Kconfig                       |   18 +
 drivers/clk/spacemit/Makefile                      |    5 +
 drivers/clk/spacemit/ccu-k1.c                      | 1164 ++++++++++++++++++++
 drivers/clk/spacemit/ccu_common.h                  |   48 +
 drivers/clk/spacemit/ccu_ddn.c                     |   83 ++
 drivers/clk/spacemit/ccu_ddn.h                     |   48 +
 drivers/clk/spacemit/ccu_mix.c                     |  268 +++++
 drivers/clk/spacemit/ccu_mix.h                     |  218 ++++
 drivers/clk/spacemit/ccu_pll.c                     |  157 +++
 drivers/clk/spacemit/ccu_pll.h                     |   86 ++
 include/dt-bindings/clock/spacemit,k1-syscon.h     |  247 +++++
 15 files changed, 2474 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/spacemit,k1-pll.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/spacemit/spacemit,k1-syscon.yaml
 create mode 100644 drivers/clk/spacemit/Kconfig
 create mode 100644 drivers/clk/spacemit/Makefile
 create mode 100644 drivers/clk/spacemit/ccu-k1.c
 create mode 100644 drivers/clk/spacemit/ccu_common.h
 create mode 100644 drivers/clk/spacemit/ccu_ddn.c
 create mode 100644 drivers/clk/spacemit/ccu_ddn.h
 create mode 100644 drivers/clk/spacemit/ccu_mix.c
 create mode 100644 drivers/clk/spacemit/ccu_mix.h
 create mode 100644 drivers/clk/spacemit/ccu_pll.c
 create mode 100644 drivers/clk/spacemit/ccu_pll.h
 create mode 100644 include/dt-bindings/clock/spacemit,k1-syscon.h

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

             reply	other threads:[~2025-04-30  1:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-30  1:29 Yixun Lan [this message]
2025-04-30  1:29 ` [GIT PULL] clk: spacemit: Add K1 SoC clk driver for v6.16 Yixun Lan
2025-05-06 18:02 ` Stephen Boyd
2025-05-06 18:02   ` 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=20250430012941-GYA288294@gentoo \
    --to=dlan@gentoo.org \
    --cc=elder@riscstar.com \
    --cc=heylenay@4d2.org \
    --cc=inochiama@gmail.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    --cc=spacemit@lists.linux.dev \
    /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.