From: Lukas Schmid <lukas.schmid@netcube.li>
To: wens@csie.org
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Samuel Holland <samuel@sholland.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Alexandre Ghiti <alex@ghiti.fr>,
Maxime Ripard <mripard@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
linux-riscv@lists.infradead.org
Subject: Re: [PATCH v3 2/5] riscv: dts: allwinner: d1s-t113: Add pinctrl's required by NetCube Systems Nagami SoM
Date: Tue, 08 Jul 2025 18:39:48 +0200 [thread overview]
Message-ID: <2513861.jE0xQCEvom@lukas-hpz440workstation> (raw)
In-Reply-To: <CAGb2v663GHk9jWXMBg36T6Qf8mwbnQcQ80=F+-tpbZ0Bau+79Q@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3537 bytes --]
On Dienstag, 8. Juli 2025 18:36:03 CEST Chen-Yu Tsai wrote:
> On Tue, Jul 8, 2025 at 8:35 AM Lukas Schmid <lukas.schmid@netcube.li> wrote:
> > Added the following pinctrl's used by the NetCube Systems Nagami SoM
> >
> > * i2c2_pins
> > * i2c3_pins
> > * i2s1_pins, i2s1_din_pins, i2s1_dout_pins
> > * spi1_pins
> >
> > Signed-off-by: Lukas Schmid <lukas.schmid@netcube.li>
> > ---
> >
> > .../boot/dts/allwinner/sunxi-d1s-t113.dtsi | 36 +++++++++++++++++++
> > 1 file changed, 36 insertions(+)
> >
> > diff --git a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> > b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi index
> > e4175adb0..8dc3deccb 100644
> > --- a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> > +++ b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> > @@ -78,6 +78,36 @@ dsi_4lane_pins: dsi-4lane-pins {
> >
> > function = "dsi";
> >
> > };
> >
> > + /omit-if-no-ref/
> > + i2c2_pins: i2c2-pins {
> > + pins = "PD20", "PD21";
> > + function = "i2c2";
> > + };
> > +
> > + /omit-if-no-ref/
> > + i2c3_pins: i2c3-pins {
> > + pins = "PG10", "PG11";
> > + function = "i2c3";
> > + };
> > +
> > + /omit-if-no-ref/
> > + i2s1_pins: i2s1-pins {
> > + pins = "PG12", "PG13";
> > + function = "i2s1";
> > + };
> > +
> > + /omit-if-no-ref/
> > + i2s1_din_pins: i2s1-din-pins {
> > + pins = "PG14";
> > + function = "i2s1_din";
> > + };
> > +
> > + /omit-if-no-ref/
> > + i2s1_dout_pins: i2s1-dout-pins {
> > + pins = "PG15";
> > + function = "i2s1_dout";
> > + };
> > +
> >
> > /omit-if-no-ref/
> > lcd_rgb666_pins: lcd-rgb666-pins {
> >
> > pins = "PD0", "PD1", "PD2", "PD3", "PD4",
> > "PD5",
> >
> > @@ -126,6 +156,12 @@ spi0_pins: spi0-pins {
> >
> > function = "spi0";
> >
> > };
> >
> > + /omit-if-no-ref/
> > + spi1_pins: spi1-pins {
> > + pins = "PD10", "PD11", "PD12", "PD13",
> > "PD14", "PD15";
> Could you split out the WP and HOLD pins as separate nodes. They aren't
> strictly needed for SPI, and folks might have designs that use the two
> pins for other purposes.
>
Sure. Do you want them as seperate ones, or is "spi1_hold_wp_pins" fine?
>
> Thanks
> ChenYu
>
> > + function = "spi1";
> > + };
> > +
> >
> > /omit-if-no-ref/
> > uart1_pg6_pins: uart1-pg6-pins {
> >
> > pins = "PG6", "PG7";
> >
> > --
> > 2.39.5
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2025-07-08 17:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-07 18:44 [PATCH v3 0/5] Add support for NetCube Systems Nagami SoM and its carrier boards Lukas Schmid
2025-07-07 18:44 ` [PATCH v3 1/5] dt-bindings: arm: sunxi: Add NetCube Systems Nagami SoM and carrier board bindings Lukas Schmid
2025-07-07 18:44 ` [PATCH v3 2/5] riscv: dts: allwinner: d1s-t113: Add pinctrl's required by NetCube Systems Nagami SoM Lukas Schmid
2025-07-08 16:36 ` Chen-Yu Tsai
2025-07-08 16:39 ` Lukas Schmid [this message]
2025-07-07 18:44 ` [PATCH v3 3/5] ARM: dts: sunxi: add support for " Lukas Schmid
2025-07-07 23:22 ` Andre Przywara
2025-07-08 15:19 ` Lukas Schmid
2025-07-08 15:35 ` Chen-Yu Tsai
2025-07-08 16:39 ` Andrew Lunn
2025-07-07 18:44 ` [PATCH v3 4/5] ARM: dts: sunxi: add support for NetCube Systems Nagami Basic Carrier Lukas Schmid
2025-07-07 18:44 ` [PATCH v3 5/5] ARM: dts: sunxi: add support for NetCube Systems Nagami Keypad Carrier Lukas Schmid
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=2513861.jE0xQCEvom@lukas-hpz440workstation \
--to=lukas.schmid@netcube.li \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jernej.skrabec@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=mripard@kernel.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=samuel@sholland.org \
--cc=wens@csie.org \
/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