From: "Troy Mitchell" <troy.mitchell@linux.spacemit.com>
To: "Yixun Lan" <dlan@kernel.org>,
"Andi Shyti" <andi.shyti@kernel.org>,
"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>,
"Troy Mitchell" <troy.mitchell@linux.spacemit.com>
Cc: <linux-i2c@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-riscv@lists.infradead.org>, <spacemit@lists.linux.dev>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] dts: riscv: spacemit: k3: Add i2c nodes
Date: Wed, 25 Mar 2026 18:41:45 +0800 [thread overview]
Message-ID: <DHBSTI0A3SOW.PCIP544HUYP4@linux.spacemit.com> (raw)
In-Reply-To: <20260325-02-k3-i2c-v1-2-78f29c83d9ac@kernel.org>
On Wed Mar 25, 2026 at 5:49 PM CST, Yixun Lan wrote:
> Populate all I2C devicetree nodes for SpacemiT K3 SoC.
>
> Signed-off-by: Yixun Lan <dlan@kernel.org>
> ---
> arch/riscv/boot/dts/spacemit/k3.dtsi | 98 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 98 insertions(+)
>
> diff --git a/arch/riscv/boot/dts/spacemit/k3.dtsi b/arch/riscv/boot/dts/spacemit/k3.dtsi
> index a3a8ceddabec..cab72591b7f1 100644
> --- a/arch/riscv/boot/dts/spacemit/k3.dtsi
> +++ b/arch/riscv/boot/dts/spacemit/k3.dtsi
> @@ -438,6 +438,76 @@ soc: soc {
> dma-noncoherent;
> ranges;
>
> + i2c0: i2c@d4010800 {
> + compatible = "spacemit,k3-i2c", "spacemit,k1-i2c";
> + reg = <0x0 0xd4010800 0x0 0x38>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupts = <36 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&syscon_apbc CLK_APBC_TWSI0>,
> + <&syscon_apbc CLK_APBC_TWSI0_BUS>;
> + clock-names = "func", "bus";
> + clock-frequency = <400000>;
> + resets = <&syscon_apbc RESET_APBC_TWSI0>;
> + status = "disabled";
> + };
> +
> + i2c1: i2c@d4011000 {
> + compatible = "spacemit,k3-i2c", "spacemit,k1-i2c";
> + reg = <0x0 0xd4011000 0x0 0x38>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupts = <37 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&syscon_apbc CLK_APBC_TWSI1>,
> + <&syscon_apbc CLK_APBC_TWSI1_BUS>;
> + clock-names = "func", "bus";
> + clock-frequency = <400000>;
> + resets = <&syscon_apbc RESET_APBC_TWSI1>;
> + status = "disabled";
> + };
> +
> + i2c2: i2c@d4012000 {
> + compatible = "spacemit,k3-i2c", "spacemit,k1-i2c";
> + reg = <0x0 0xd4012000 0x0 0x38>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupts = <38 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&syscon_apbc CLK_APBC_TWSI2>,
> + <&syscon_apbc CLK_APBC_TWSI2_BUS>;
> + clock-names = "func", "bus";
> + clock-frequency = <400000>;
> + resets = <&syscon_apbc RESET_APBC_TWSI2>;
> + status = "disabled";
> + };
I think we should add a comment here to explain why there isn't i2c3.
Otherwise, LGTM.
Reviewed-by: Troy Mitchell <troy.mitchell@linux.spacemit.com>
next prev parent reply other threads:[~2026-03-25 10:42 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-25 9:49 [PATCH 0/2] riscv: spacemit: k3: Add I2C support Yixun Lan
2026-03-25 9:49 ` [PATCH 1/2] dt-bindings: i2c: spacemit: k3: Add compatible Yixun Lan
2026-03-25 10:42 ` Troy Mitchell
2026-03-25 13:20 ` Javier Martinez Canillas
2026-03-25 18:16 ` Conor Dooley
2026-03-26 7:47 ` Javier Martinez Canillas
2026-03-25 18:16 ` Conor Dooley
2026-03-26 22:28 ` Andi Shyti
2026-03-25 9:49 ` [PATCH 2/2] dts: riscv: spacemit: k3: Add i2c nodes Yixun Lan
2026-03-25 10:41 ` Troy Mitchell [this message]
2026-03-26 22:23 ` Andi Shyti
2026-03-27 2:39 ` Yixun Lan
2026-03-26 22:22 ` Andi Shyti
2026-03-26 22:24 ` Andi Shyti
2026-03-27 2:05 ` Yixun Lan
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=DHBSTI0A3SOW.PCIP544HUYP4@linux.spacemit.com \
--to=troy.mitchell@linux.spacemit.com \
--cc=alex@ghiti.fr \
--cc=andi.shyti@kernel.org \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlan@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=robh@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox