From: Shawn Guo <shawnguo2@yeah.net>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: linux-kernel@vger.kernel.org, linux-amarula@amarulasolutions.com,
Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Shawn Guo <shawnguo@kernel.org>, Mark Brown <broonie@kernel.org>,
Michael Trimarchi <michael@amarulasolutions.com>,
Conor Dooley <conor+dt@kernel.org>,
Fabio Estevam <festevam@gmail.com>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Rob Herring <robh@kernel.org>,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org
Subject: Re: [RESEND PATCH 2/3] ARM: dts: imx28-amarula-rmm: add I2S audio
Date: Mon, 27 Oct 2025 08:49:56 +0800 [thread overview]
Message-ID: <aP7BtHVgigfcdtcE@dragon> (raw)
In-Reply-To: <20250924130749.3012071-2-dario.binacchi@amarulasolutions.com>
On Wed, Sep 24, 2025 at 03:07:45PM +0200, Dario Binacchi wrote:
> Add support for I2S audio on Amarula rmm board. Audio codec
> TLV320AIC3X is connected as slave to SAIF0, which provides
> bitclock, frame and MCLK.
>
> Co-developed-by: Michael Trimarchi <michael@amarulasolutions.com>
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
>
> .../boot/dts/nxp/mxs/imx28-amarula-rmm.dts | 51 +++++++++++++++++++
> 1 file changed, 51 insertions(+)
>
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx28-amarula-rmm.dts b/arch/arm/boot/dts/nxp/mxs/imx28-amarula-rmm.dts
> index af59211842fb..0c5b52f67178 100644
> --- a/arch/arm/boot/dts/nxp/mxs/imx28-amarula-rmm.dts
> +++ b/arch/arm/boot/dts/nxp/mxs/imx28-amarula-rmm.dts
> @@ -112,6 +112,29 @@ reg_usb1_vbus: regulator-usb1-vbus {
> enable-active-high;
> regulator-always-on;
> };
> +
> + sound {
> + compatible = "simple-audio-card";
> + simple-audio-card,name = "imx28-mrmmi-tlv320aic3x-audio";
> + simple-audio-card,format = "i2s";
> + simple-audio-card,bitclock-master = <&cpu_dai>;
> + simple-audio-card,frame-master = <&cpu_dai>;
> + simple-audio-card,widgets =
> + "Headphone", "Headphone Jack";
> + simple-audio-card,routing =
> + "Headphone Jack", "HPROUT",
> + "Headphone Jack", "HPRCOM";
> + simple-audio-card,mclk-fs = <512>;
> +
> + cpu_dai: simple-audio-card,cpu {
> + sound-dai = <&saif0>;
> + clocks = <&saif0>;
> + };
> +
> + codec_dai: simple-audio-card,codec {
> + sound-dai = <&tlv320aic3x>;
> + };
> + };
> };
>
> &auart0 {
> @@ -154,6 +177,20 @@ &i2c0 {
> pinctrl-0 = <&i2c0_pins_a>;
> status = "okay";
>
> + tlv320aic3x: tlv320aic3x@18 {
Can we use a generic node name?
> + compatible = "ti,tlv320aic3x";
> + pinctrl-names = "default";
> + pinctrl-0 = <&tlv320aic3x_pins>;
> + reg = <0x18>;
> + reset-gpios = <&gpio2 4 GPIO_ACTIVE_LOW>;
> + #sound-dai-cells = <0>;
> +
Nitpick: unnecessary newline
Shawn
> + DVDD-supply = <®_1v8>;
> + IOVDD-supply = <®_3v3>;
> + AVDD-supply = <®_3v3>;
> + DRVDD-supply = <®_3v3>;
> + };
> +
> touchscreen: touchscreen@38 {
> compatible = "edt,edt-ft5306";
> reg = <0x38>;
> @@ -246,6 +283,14 @@ MX28_PAD_PWM1__GPIO_3_17
> fsl,voltage = <MXS_VOLTAGE_HIGH>;
> };
>
> + tlv320aic3x_pins: tlv320aic3x-pins@0 {
> + reg = <0>;
> + fsl,pinmux-ids = <MX28_PAD_SSP0_DATA4__GPIO_2_4>;
> + fsl,drive-strength = <MXS_DRIVE_4mA>;
> + fsl,pull-up = <MXS_PULL_ENABLE>;
> + fsl,voltage = <MXS_VOLTAGE_HIGH>;
> + };
> +
> usb0_vbus_enable_pin: usb0-vbus-enable@0 {
> reg = <0>;
> fsl,pinmux-ids = <MX28_PAD_SSP0_DATA5__GPIO_2_5>;
> @@ -269,6 +314,12 @@ &pwm {
> status = "okay";
> };
>
> +&saif0 {
> + pinctrl-names = "default";
> + pinctrl-0 = <&saif0_pins_a>;
> + status = "okay";
> +};
> +
> /* microSD */
> &ssp0 {
> compatible = "fsl,imx28-mmc";
> --
> 2.43.0
>
> base-commit: cec1e6e5d1ab33403b809f79cd20d6aff124ccfe
> branch: microgea-rmm-audio
next prev parent reply other threads:[~2025-10-27 0:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-24 13:07 [RESEND PATCH 1/3] ASoC: mxs-saif: support usage with simple-audio-card Dario Binacchi
2025-09-24 13:07 ` [RESEND PATCH 2/3] ARM: dts: imx28-amarula-rmm: add I2S audio Dario Binacchi
2025-10-27 0:49 ` Shawn Guo [this message]
2025-09-24 13:07 ` [RESEND PATCH 3/3] ARM: mxs_defconfig: enable sound drivers for imx28-amarula-rmm Dario Binacchi
2025-09-25 1:18 ` [RESEND PATCH 1/3] ASoC: mxs-saif: support usage with simple-audio-card Rob Herring (Arm)
2025-10-17 11:24 ` (subset) " Mark Brown
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=aP7BtHVgigfcdtcE@dragon \
--to=shawnguo2@yeah.net \
--cc=Frank.Li@nxp.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=dario.binacchi@amarulasolutions.com \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michael@amarulasolutions.com \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.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;
as well as URLs for NNTP newsgroup(s).