From: "Jernej Škrabec" <jernej.skrabec@gmail.com>
To: linux-sunxi@lists.linux.dev, Chris Morgan <macroalpha82@gmail.com>
Cc: devicetree@vger.kernel.org, samuel@sholland.org, wens@csie.org,
conor+dt@kernel.org, krzk+dt@kernel.org, robh@kernel.org,
Chris Morgan <macromorgan@hotmail.com>
Subject: Re: [PATCH 1/4] arm64: dts: allwinner: h700: Add MMC2 for Anbernic RG35XX
Date: Sat, 22 Feb 2025 11:44:39 +0100 [thread overview]
Message-ID: <1884930.atdPhlSkOF@jernej-laptop> (raw)
In-Reply-To: <20241018160617.157083-2-macroalpha82@gmail.com>
Hi Chris,
sorry it took so long.
Dne petek, 18. oktober 2024 ob 18:06:14 Srednjeevropski standardni čas je Chris Morgan napisal(a):
> From: Chris Morgan <macromorgan@hotmail.com>
>
> Add support for the second MMC slot on the Anbernic RG35XX series.
> The second MMC card is connected to MMC2 (WiFi if present is MMC1).
> The MMC logic is powered by cldo3 via the power domain to which
> it is connected, and also has an external 3.3v GPIO controlled
> regulator required for functionality.
>
> Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
> ---
> .../sun50i-h700-anbernic-rg35xx-2024.dts | 27 +++++++++++++++++--
> 1 file changed, 25 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts b/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts
> index 80ccab7b5ba7..e2039fd76b3d 100644
> --- a/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts
> +++ b/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts
> @@ -18,6 +18,9 @@ / {
> compatible = "anbernic,rg35xx-2024", "allwinner,sun50i-h700";
>
> aliases {
> + mmc0 = &mmc0;
> + mmc1 = &mmc2;
> + mmc2 = &mmc1;
Please drop those. As a rule, we don't have it in any DT, since there are more
universal to identify root partition than a relying on device order.
> serial0 = &uart0;
> };
>
> @@ -175,6 +178,15 @@ reg_vcc5v: regulator-vcc5v { /* USB-C power input */
> regulator-min-microvolt = <5000000>;
> regulator-max-microvolt = <5000000>;
> };
> +
> + reg_vcc3v3_mmc2: regulator-vcc3v3-mmc2 {
> + compatible = "regulator-fixed";
> + enable-active-high;
> + gpio = <&pio 4 4 GPIO_ACTIVE_HIGH>; /* PE4 */
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <3300000>;
> + regulator-name = "vcc3v3-mmc2";
> + };
> };
>
> &cpu0 {
> @@ -186,10 +198,21 @@ &ehci0 {
> };
>
> &mmc0 {
> - vmmc-supply = <®_cldo3>;
> - disable-wp;
> + bus-width = <4>;
> cd-gpios = <&pio 5 6 GPIO_ACTIVE_LOW>; /* PF6 */
> + disable-wp;
> + no-1-8-v;
Please leave properties in same order to minimize patch size. From
what I can see, only above property is added, which is not needed anyway.
> + vmmc-supply = <®_cldo3>;
> + status = "okay";
> +};
> +
> +&mmc2 {
> bus-width = <4>;
> + cd-gpios = <&pio 4 22 GPIO_ACTIVE_LOW>; /* PE22 */
> + disable-wp;
> + no-1-8-v;
> + vmmc-supply = <®_vcc3v3_mmc2>;
> + vqmmc-supply = <®_cldo3>;
Is this another SD card slot or eMMC? You configured it as it would be SD card,
but mmc2 slots are usually used for eMMC, which needs different configuration.
Best regards,
Jernej
> status = "okay";
> };
>
>
next prev parent reply other threads:[~2025-02-22 10:44 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-18 16:06 [PATCH 0/4] RG35XX Add Additional Hardware Support Chris Morgan
2024-10-18 16:06 ` [PATCH 1/4] arm64: dts: allwinner: h700: Add MMC2 for Anbernic RG35XX Chris Morgan
2025-02-22 10:44 ` Jernej Škrabec [this message]
2025-02-24 18:17 ` Chris Morgan
2025-02-25 16:13 ` Jernej Škrabec
2025-02-25 16:54 ` Andre Przywara
2024-10-18 16:06 ` [PATCH 2/4] arm64: dts: allwinner: h700: Set cpusldo to always-on for RG35XX Chris Morgan
2025-02-22 10:46 ` Jernej Škrabec
2024-10-18 16:06 ` [PATCH 3/4] arm64: dts: allwinner: h700: Add LED1 for Anbernic RG35XX Chris Morgan
2025-02-22 10:47 ` Jernej Škrabec
2024-10-18 16:06 ` [PATCH 4/4] arm64: dts: allwinner: h700: Add USB Host for RG35XX-H Chris Morgan
2025-02-22 10:48 ` Jernej Škrabec
2025-02-22 13:25 ` (subset) [PATCH 0/4] RG35XX Add Additional Hardware Support Chen-Yu Tsai
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=1884930.atdPhlSkOF@jernej-laptop \
--to=jernej.skrabec@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=macroalpha82@gmail.com \
--cc=macromorgan@hotmail.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