From: Troy Mitchell <troy.mitchell@linux.spacemit.com>
To: Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Yixun Lan <dlan@kernel.org>,
Jinmei Wei <weijinmei@linux.spacemit.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Paul Walmsley <pjw@kernel.org>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Alexandre Ghiti <alex@ghiti.fr>
Cc: linux-sound@vger.kernel.org, linux-riscv@lists.infradead.org,
spacemit@lists.linux.dev, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>,
Troy Mitchell <troy.mitchell@linux.spacemit.com>
Subject: [PATCH v2] riscv: dts: spacemit: k3: add i2s0-i2s5 nodes
Date: Thu, 10 Sep 2026 01:17:17 +0800 [thread overview]
Message-ID: <20260910-kx-i2s-dts-v2-1-91f5376c899d@linux.spacemit.com> (raw)
Add the six SSPA-based I2S controller nodes for the K3 SoC.
i2s0 and i2s2-i2s5 each have a dedicated per-controller sysclk
divider, so they use the published 7-clock layout (sysclk, bclk, bus,
func, sysclk_div, c_sysclk, c_bclk).
i2s1 uses 6 clocks (sysclk, bclk, bus, func, c_sysclk, c_bclk) because
its sysclk is driven directly by a DDN (ISCCR0) and has no separate
divider stage.
Signed-off-by: Troy Mitchell <troy.mitchell@linux.spacemit.com>
Reviewed-by: Yixun Lan <dlan@kernel.org>
---
The DTS patch was applied as cd01c677869a and reverted by
1f5d8228ca2c because the SoC DT branch lacked CLK_MPMU_I2S_SYSCLK.
The clock binding, clock driver and ASoC dependencies are now all
included in v7.3-rc1, so this submission has no cross-tree dependencies.
Arnd requested resubmission after -rc1:
https://lore.kernel.org/all/cec87950-f0e1-49f8-9a2c-f8b87b460da2@app.fastmail.com/
---
Changes in v2:
- Rebase onto v7.3-rc1, which includes all prerequisite clock changes.
- Drop the already merged ASoC clock-name fix (4c69d04958ec) and
six-clock binding update (ec926b3bcb49); retain only the DTS patch.
- Resolve the insertion conflict with the new SPI nodes by placing
I2S0-I2S3 before SPI0/SPI1 and I2S4-I2S5 after them, in address order.
The I2S node contents are unchanged from v1.
- Carry Yixun Lan's Reviewed-by from v1.
- Link to v1: https://lore.kernel.org/all/20260721-kx-i2s-dts-v1-0-d22cb6cfaab5@linux.spacemit.com/
To: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzk+dt@kernel.org>
To: Conor Dooley <conor+dt@kernel.org>
To: Yixun Lan <dlan@kernel.org>
To: Paul Walmsley <pjw@kernel.org>
To: Palmer Dabbelt <palmer@dabbelt.com>
To: Albert Ou <aou@eecs.berkeley.edu>
To: Alexandre Ghiti <alex@ghiti.fr>
Cc: devicetree@vger.kernel.org
Cc: linux-riscv@lists.infradead.org
Cc: spacemit@lists.linux.dev
Cc: linux-kernel@vger.kernel.org
---
arch/riscv/boot/dts/spacemit/k3.dtsi | 119 +++++++++++++++++++++++++++++++++++
1 file changed, 119 insertions(+)
diff --git a/arch/riscv/boot/dts/spacemit/k3.dtsi b/arch/riscv/boot/dts/spacemit/k3.dtsi
index c3f2dce0969c0..f2ff9f02249c3 100644
--- a/arch/riscv/boot/dts/spacemit/k3.dtsi
+++ b/arch/riscv/boot/dts/spacemit/k3.dtsi
@@ -1140,6 +1140,85 @@ uart10: serial@d401f000 {
status = "disabled";
};
+ i2s0: i2s@d4026000 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4026000 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S0_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S0_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S0_BUS>,
+ <&syscon_apbc CLK_APBC_I2S0>,
+ <&syscon_mpmu CLK_MPMU_I2S0_SYSCLK_DIV>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "sysclk_div", "c_sysclk", "c_bclk";
+ dmas = <&pdma 21>, <&pdma 22>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S0>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
+ i2s1: i2s@d4026800 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4026800 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S1_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S1_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S1_BUS>,
+ <&syscon_apbc CLK_APBC_I2S1>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "c_sysclk", "c_bclk";
+ dmas = <&pdma 23>, <&pdma 24>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S1>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
+ i2s2: i2s@d4027000 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4027000 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S2_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S2_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S2_BUS>,
+ <&syscon_apbc CLK_APBC_I2S2>,
+ <&syscon_mpmu CLK_MPMU_I2S2_SYSCLK_DIV>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "sysclk_div", "c_sysclk", "c_bclk";
+ dmas = <&pdma 56>, <&pdma 57>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S2>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
+ i2s3: i2s@d4027800 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4027800 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S3_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S3_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S3_BUS>,
+ <&syscon_apbc CLK_APBC_I2S3>,
+ <&syscon_mpmu CLK_MPMU_I2S3_SYSCLK_DIV>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "sysclk_div", "c_sysclk", "c_bclk";
+ dmas = <&pdma 58>, <&pdma 59>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S3>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
spi0: spi@d4040000 {
compatible = "spacemit,k3-spi", "spacemit,k1-spi";
reg = <0x0 0xd4040000 0x0 0x30>;
@@ -1170,6 +1249,46 @@ spi1: spi@d4040800 {
status = "disabled";
};
+ i2s4: i2s@d4041000 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4041000 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S4_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S4_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S4_BUS>,
+ <&syscon_apbc CLK_APBC_I2S4>,
+ <&syscon_mpmu CLK_MPMU_I2S4_SYSCLK_DIV>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "sysclk_div", "c_sysclk", "c_bclk";
+ dmas = <&pdma 60>, <&pdma 61>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S4>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
+ i2s5: i2s@d4041800 {
+ compatible = "spacemit,k3-i2s";
+ reg = <0x0 0xd4041800 0x0 0x30>;
+ clocks = <&syscon_mpmu CLK_MPMU_I2S5_SYSCLK>,
+ <&syscon_apbc CLK_APBC_I2S5_BCLK>,
+ <&syscon_apbc CLK_APBC_I2S5_BUS>,
+ <&syscon_apbc CLK_APBC_I2S5>,
+ <&syscon_mpmu CLK_MPMU_I2S5_SYSCLK_DIV>,
+ <&syscon_mpmu CLK_MPMU_I2S_SYSCLK>,
+ <&syscon_mpmu CLK_MPMU_I2S_BCLK>;
+ clock-names = "sysclk", "bclk", "bus", "func",
+ "sysclk_div", "c_sysclk", "c_bclk";
+ dmas = <&pdma 62>, <&pdma 63>;
+ dma-names = "tx", "rx";
+ resets = <&syscon_apbc RESET_APBC_I2S5>;
+ #sound-dai-cells = <0>;
+
+ status = "disabled";
+ };
+
syscon_mpmu: system-controller@d4050000 {
compatible = "spacemit,k3-syscon-mpmu";
reg = <0x0 0xd4050000 0x0 0x10000>;
---
base-commit: cee9395acd8043be0644b25c34bfa86623f2b935
change-id: 20260615-kx-i2s-dts-123764c9b2b2
Best regards,
--
Troy Mitchell <troy.mitchell@linux.spacemit.com>
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next reply other threads:[~2026-09-09 17:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-09 17:17 Troy Mitchell [this message]
[not found] ` <20260909172639.BCDE91F000FF@smtp.kernel.org>
2026-09-10 1:32 ` [PATCH v2] riscv: dts: spacemit: k3: add i2s0-i2s5 nodes Troy Mitchell
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=20260910-kx-i2s-dts-v2-1-91f5376c899d@linux.spacemit.com \
--to=troy.mitchell@linux.spacemit.com \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=arnd@arndb.de \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlan@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-sound@vger.kernel.org \
--cc=palmer@dabbelt.com \
--cc=perex@perex.cz \
--cc=pjw@kernel.org \
--cc=robh@kernel.org \
--cc=spacemit@lists.linux.dev \
--cc=tiwai@suse.com \
--cc=weijinmei@linux.spacemit.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).