U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Christian Marangi <ansuelsmth@gmail.com>
To: Tom Rini <trini@konsulko.com>, Peng Fan <peng.fan@nxp.com>,
	Jaehoon Chung <jh80.chung@samsung.com>,
	Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Michael Trimarchi <michael@amarulasolutions.com>,
	Frieder Schrempf <frieder.schrempf@kontron.de>,
	Joe Hershberger <joe.hershberger@ni.com>,
	Ramon Fried <rfried.dev@gmail.com>,
	Jagan Teki <jagan@amarulasolutions.com>,
	Christian Marangi <ansuelsmth@gmail.com>,
	Bruce Suen <bruce_suen@163.com>,
	u-boot@lists.denx.de
Subject: [PATCH v2 06/14] arch: arm: dts: an7581: Add eMMC nodes
Date: Mon,  7 Apr 2025 22:01:50 +0200	[thread overview]
Message-ID: <20250407200208.25594-7-ansuelsmth@gmail.com> (raw)
In-Reply-To: <20250407200208.25594-1-ansuelsmth@gmail.com>

Add eMMC nodes with the fixed regulator and fixed clock. It's also
needed to assign the clock and set it to 200MHz as it's set to 150Mhz by
default.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
---
 arch/arm/dts/an7581-u-boot.dtsi | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/arch/arm/dts/an7581-u-boot.dtsi b/arch/arm/dts/an7581-u-boot.dtsi
index a569044195d..46526ff0f0f 100644
--- a/arch/arm/dts/an7581-u-boot.dtsi
+++ b/arch/arm/dts/an7581-u-boot.dtsi
@@ -14,6 +14,21 @@
 		};
 	};
 
+	clk25m: oscillator {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <25000000>;
+		clock-output-names = "clkxtal";
+	};
+
+	vmmc_3v3: regulator-vmmc-3v3 {
+		compatible = "regulator-fixed";
+		regulator-name = "vmmc";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+		regulator-always-on;
+	};
+
 	soc {
 		chip_scu: syscon@1fa20000 {
 			compatible = "airoha,en7581-chip-scu", "syscon";
@@ -43,6 +58,24 @@
 			compatible = "airoha,en7581-switch";
 			reg = <0 0x1fb58000 0 0x8000>;
 		};
+
+		mmc0: mmc@1fa0e000 {
+			compatible = "mediatek,mt7622-mmc";
+			reg = <0x0 0x1fa0e000 0x0 0x1000>,
+				<0x0 0x1fa0c000 0x0 0x60>;
+			interrupts = <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&scuclk EN7581_CLK_EMMC>, <&clk25m>;
+			clock-names = "source", "hclk";
+			bus-width = <4>;
+			max-frequency = <52000000>;
+			vmmc-supply = <&vmmc_3v3>;
+			disable-wp;
+			cap-mmc-highspeed;
+			non-removable;
+
+			assigned-clocks = <&scuclk EN7581_CLK_EMMC>;
+			assigned-clock-rates = <200000000>;
+		};
 	};
 };
 
-- 
2.48.1


  parent reply	other threads:[~2025-04-07 20:03 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-07 20:01 [PATCH v2 00/14] airoha: add support spi/mmc/ethernet Christian Marangi
2025-04-07 20:01 ` [PATCH v2 01/14] arch: arm: dts: an7581: add Chip SCU node Christian Marangi
2025-04-07 20:01 ` [PATCH v2 02/14] net: airoha: Add Airoha Ethernet driver Christian Marangi
2025-04-07 20:01 ` [PATCH v2 03/14] airoha: Add Ethernet config to defconfig Christian Marangi
2025-04-07 20:01 ` [PATCH v2 04/14] arch: arm: dts: an7581: Add Ethernet nodes Christian Marangi
2025-04-07 20:01 ` [PATCH v2 05/14] mmc: mediatek: permit to also build for Airoha arch Christian Marangi
2025-04-07 20:01 ` Christian Marangi [this message]
2025-04-07 20:01 ` [PATCH v2 07/14] airoha: Add eMMC config to defconfig Christian Marangi
2025-04-07 20:01 ` [PATCH v2 08/14] regmap: Add regmap_set/clear_bits shorthands Christian Marangi
2025-04-07 20:01 ` [PATCH v2 09/14] spi: drop unneeded spi.h header include from spinand.h Christian Marangi
2025-04-07 20:01 ` [PATCH v2 10/14] spi: Introduce setup_for_spinand() Christian Marangi
2025-04-07 20:01 ` [PATCH v2 11/14] spinand: call SPI setup_for_spinand if supported Christian Marangi
2025-04-07 20:01 ` [PATCH v2 12/14] spi: airoha: Add Airoha SPI NAND driver Christian Marangi
2025-04-07 20:01 ` [PATCH v2 13/14] arm: dts: an7581: Add SNAND node Christian Marangi
2025-04-07 20:01 ` [PATCH v2 14/14] configs: airoha: an7581_evb: Enable Airoha SNFI SPI config Christian Marangi
2025-04-17 17:06 ` [PATCH v2 00/14] airoha: add support spi/mmc/ethernet Tom Rini

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=20250407200208.25594-7-ansuelsmth@gmail.com \
    --to=ansuelsmth@gmail.com \
    --cc=bruce_suen@163.com \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=frieder.schrempf@kontron.de \
    --cc=jagan@amarulasolutions.com \
    --cc=jh80.chung@samsung.com \
    --cc=joe.hershberger@ni.com \
    --cc=michael@amarulasolutions.com \
    --cc=peng.fan@nxp.com \
    --cc=rfried.dev@gmail.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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