U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets
@ 2025-09-09 10:36 Wadim Egorov
  2025-09-09 10:36 ` [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: " Wadim Egorov
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Wadim Egorov @ 2025-09-09 10:36 UTC (permalink / raw)
  To: ggiordano, trini, d.schultz; +Cc: u-boot, upstream

From: Daniel Schultz <d.schultz@phytec.de>

Enable CONFIG_SPL_SYS_MMCSD_RAW_MODE and set the offset address to
boot from raw addresses instead of a FAT partition.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
---
 configs/phycore_am62ax_r5_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/phycore_am62ax_r5_defconfig b/configs/phycore_am62ax_r5_defconfig
index 01d100842de..584a6415ca5 100644
--- a/configs/phycore_am62ax_r5_defconfig
+++ b/configs/phycore_am62ax_r5_defconfig
@@ -42,6 +42,8 @@ CONFIG_SPL_SYS_MALLOC=y
 CONFIG_SPL_HAS_CUSTOM_MALLOC_START=y
 CONFIG_SPL_CUSTOM_SYS_MALLOC_ADDR=0x84000000
 CONFIG_SPL_EARLY_BSS=y
+CONFIG_SPL_SYS_MMCSD_RAW_MODE=y
+CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x400
 CONFIG_SPL_DMA=y
 CONFIG_SPL_DM_MAILBOX=y
 CONFIG_SPL_MTD=y
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: eMMC boot from raw offsets
  2025-09-09 10:36 [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets Wadim Egorov
@ 2025-09-09 10:36 ` Wadim Egorov
  2025-09-10  5:11   ` Anshul Dalal
  2025-09-10  5:11 ` [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: " Anshul Dalal
  2025-09-20 17:47 ` Tom Rini
  2 siblings, 1 reply; 5+ messages in thread
From: Wadim Egorov @ 2025-09-09 10:36 UTC (permalink / raw)
  To: ggiordano, trini, d.schultz; +Cc: u-boot, upstream

From: Daniel Schultz <d.schultz@phytec.de>

Enable CONFIG_SPL_SYS_MMCSD_RAW_MODE and set the offset address to
boot from raw addresses instead of a FAT partition.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
---
 configs/phycore_am62ax_a53_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/phycore_am62ax_a53_defconfig b/configs/phycore_am62ax_a53_defconfig
index 05849d05be4..27fa4386a21 100644
--- a/configs/phycore_am62ax_a53_defconfig
+++ b/configs/phycore_am62ax_a53_defconfig
@@ -48,6 +48,8 @@ CONFIG_SPL_MAX_SIZE=0x58000
 CONFIG_SPL_PAD_TO=0x0
 CONFIG_SPL_BOARD_INIT=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
+CONFIG_SPL_SYS_MMCSD_RAW_MODE=y
+CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x1400
 CONFIG_SPL_DMA=y
 CONFIG_SPL_ENV_SUPPORT=y
 CONFIG_SPL_ETH=y
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets
  2025-09-09 10:36 [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets Wadim Egorov
  2025-09-09 10:36 ` [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: " Wadim Egorov
@ 2025-09-10  5:11 ` Anshul Dalal
  2025-09-20 17:47 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Anshul Dalal @ 2025-09-10  5:11 UTC (permalink / raw)
  To: Wadim Egorov, ggiordano, trini, d.schultz; +Cc: u-boot, upstream

On Tue Sep 9, 2025 at 4:06 PM IST, Wadim Egorov wrote:
> From: Daniel Schultz <d.schultz@phytec.de>
>
> Enable CONFIG_SPL_SYS_MMCSD_RAW_MODE and set the offset address to
> boot from raw addresses instead of a FAT partition.
>
> Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
> Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
> ---
>  configs/phycore_am62ax_r5_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/configs/phycore_am62ax_r5_defconfig b/configs/phycore_am62ax_r5_defconfig
> index 01d100842de..584a6415ca5 100644
> --- a/configs/phycore_am62ax_r5_defconfig
> +++ b/configs/phycore_am62ax_r5_defconfig
> @@ -42,6 +42,8 @@ CONFIG_SPL_SYS_MALLOC=y
>  CONFIG_SPL_HAS_CUSTOM_MALLOC_START=y
>  CONFIG_SPL_CUSTOM_SYS_MALLOC_ADDR=0x84000000
>  CONFIG_SPL_EARLY_BSS=y
> +CONFIG_SPL_SYS_MMCSD_RAW_MODE=y
> +CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x400
>  CONFIG_SPL_DMA=y
>  CONFIG_SPL_DM_MAILBOX=y
>  CONFIG_SPL_MTD=y

Looks good to me,
Acked-by: Anshul Dalal <anshuld@ti.com>

Regards

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: eMMC boot from raw offsets
  2025-09-09 10:36 ` [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: " Wadim Egorov
@ 2025-09-10  5:11   ` Anshul Dalal
  0 siblings, 0 replies; 5+ messages in thread
From: Anshul Dalal @ 2025-09-10  5:11 UTC (permalink / raw)
  To: Wadim Egorov, ggiordano, trini, d.schultz; +Cc: u-boot, upstream

On Tue Sep 9, 2025 at 4:06 PM IST, Wadim Egorov wrote:
> From: Daniel Schultz <d.schultz@phytec.de>
>
> Enable CONFIG_SPL_SYS_MMCSD_RAW_MODE and set the offset address to
> boot from raw addresses instead of a FAT partition.
>
> Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
> Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
> ---
>  configs/phycore_am62ax_a53_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/configs/phycore_am62ax_a53_defconfig b/configs/phycore_am62ax_a53_defconfig
> index 05849d05be4..27fa4386a21 100644
> --- a/configs/phycore_am62ax_a53_defconfig
> +++ b/configs/phycore_am62ax_a53_defconfig
> @@ -48,6 +48,8 @@ CONFIG_SPL_MAX_SIZE=0x58000
>  CONFIG_SPL_PAD_TO=0x0
>  CONFIG_SPL_BOARD_INIT=y
>  CONFIG_SPL_SYS_MALLOC_SIMPLE=y
> +CONFIG_SPL_SYS_MMCSD_RAW_MODE=y
> +CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x1400
>  CONFIG_SPL_DMA=y
>  CONFIG_SPL_ENV_SUPPORT=y
>  CONFIG_SPL_ETH=y

Looks good to me,
Acked-by: Anshul Dalal <anshuld@ti.com>

Regards

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets
  2025-09-09 10:36 [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets Wadim Egorov
  2025-09-09 10:36 ` [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: " Wadim Egorov
  2025-09-10  5:11 ` [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: " Anshul Dalal
@ 2025-09-20 17:47 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2025-09-20 17:47 UTC (permalink / raw)
  To: ggiordano, d.schultz, Wadim Egorov; +Cc: u-boot, upstream

On Tue, 09 Sep 2025 12:36:53 +0200, Wadim Egorov wrote:

> Enable CONFIG_SPL_SYS_MMCSD_RAW_MODE and set the offset address to
> boot from raw addresses instead of a FAT partition.
> 
> 

Applied to u-boot/next, thanks!

[1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets
      commit: 6f79e80079aae24d2fbcc73185a5a35fdeaed3bb
[2/2] configs: phycore_am62ax_a53_defconfig: eMMC boot from raw offsets
      commit: be5715f9aa93341fb01f870af596bfa37e137b91
-- 
Tom



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-09-20 17:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-09 10:36 [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: eMMC boot from raw offsets Wadim Egorov
2025-09-09 10:36 ` [PATCH 2/2] configs: phycore_am62ax_a53_defconfig: " Wadim Egorov
2025-09-10  5:11   ` Anshul Dalal
2025-09-10  5:11 ` [PATCH 1/2] configs: phycore_am62ax_r5_defconfig: " Anshul Dalal
2025-09-20 17:47 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox