mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: "open list:BAREBOX" <barebox@lists.infradead.org>
Subject: [PATCH 8/9] ARM: am625-sk: put environment on eMMC when booting from it
Date: Wed, 05 Feb 2025 10:48:16 +0100	[thread overview]
Message-ID: <20250205-k3-emmc-v1-8-06679246be41@pengutronix.de> (raw)
In-Reply-To: <20250205-k3-emmc-v1-0-06679246be41@pengutronix.de>

When booting from eMMC put the environment on the eMMC as well.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boards/am625-sk/board.c |  5 +++++
 arch/arm/dts/k3-am625-sk.dts     | 15 +++++++++++++++
 2 files changed, 20 insertions(+)

diff --git a/arch/arm/boards/am625-sk/board.c b/arch/arm/boards/am625-sk/board.c
index fd3bcdeac6..c716f30e69 100644
--- a/arch/arm/boards/am625-sk/board.c
+++ b/arch/arm/boards/am625-sk/board.c
@@ -11,6 +11,11 @@ static int am625_sk_probe(struct device *dev)
 {
 	am625_enable_32k_crystal();
 
+	k3_bbu_emmc_register("emmc", "/dev/mmc0", BBU_HANDLER_FLAG_DEFAULT);
+
+	if (k3_boot_is_emmc())
+		of_device_enable_path("/chosen/environment-emmc");
+
 	return 0;
 }
 
diff --git a/arch/arm/dts/k3-am625-sk.dts b/arch/arm/dts/k3-am625-sk.dts
index 56d5681519..8d7a73babf 100644
--- a/arch/arm/dts/k3-am625-sk.dts
+++ b/arch/arm/dts/k3-am625-sk.dts
@@ -3,6 +3,16 @@
 #include <arm64/ti/k3-am625-sk.dts>
 #include "k3-am625.dtsi"
 
+/ {
+	chosen {
+		environment-emmc {
+			compatible = "barebox,environment";
+			device-path = &env_emmc;
+			status = "disabled";
+		};
+	};
+};
+
 /*
  * DRAM size differs between board variants. Real size is read from DDRSS
  */
@@ -10,4 +20,9 @@
 
 &sdhci0 {
 	max-frequency = <26000000>;
+
+	env_emmc: partition@e0000 {
+		label = "barebox-environment";
+		reg = <0x0 0xe0000 0x0 0x20000>;
+	};
 };

-- 
2.39.5




  parent reply	other threads:[~2025-02-05  9:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-05  9:48 [PATCH 0/9] ARM: K3 updates Sascha Hauer
2025-02-05  9:48 ` [PATCH 1/9] ARM: k3: Add function to enable 32k crystal Sascha Hauer
2025-02-05  9:48 ` [PATCH 2/9] ARM: k3: add function to detect eMMC boot Sascha Hauer
2025-02-05  9:48 ` [PATCH 3/9] ARM: k3: do not mount /boot when booting from eMMC Sascha Hauer
2025-02-05  9:48 ` [PATCH 4/9] ARM: k3: r5: add USB DFU and eMMC boot support Sascha Hauer
2025-02-05  9:48 ` [PATCH 5/9] ARM: am625-sk: enable 32k crystal Sascha Hauer
2025-02-05  9:48 ` [PATCH 6/9] mci: am654: parse generic mmc node properties Sascha Hauer
2025-02-05  9:48 ` [PATCH 7/9] ARM: k3: limit eMMC frequency to 25MHz Sascha Hauer
2025-02-05  9:48 ` Sascha Hauer [this message]
2025-02-05  9:48 ` [PATCH 9/9] serial: omap: Use ttyS as Linux console name Sascha Hauer

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=20250205-k3-emmc-v1-8-06679246be41@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.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