U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX
@ 2025-05-02 10:58 Adam Ford
  2025-05-02 10:58 ` [PATCH 2/3] arm64: imx: imx8mn-beacon: " Adam Ford
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Adam Ford @ 2025-05-02 10:58 UTC (permalink / raw)
  To: u-boot
  Cc: festevam, aford, Adam Ford, Tom Rini, Simon Glass, Sean Anderson,
	Quentin Schulz, Marek Vasut

In order to run binaries targeting the Cortex-M4,
BOOTAUX is required.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/imx8mm_beacon_defconfig b/configs/imx8mm_beacon_defconfig
index e4eca19a10b..27007bd8687 100644
--- a/configs/imx8mm_beacon_defconfig
+++ b/configs/imx8mm_beacon_defconfig
@@ -24,6 +24,7 @@ CONFIG_SPL_BSS_MAX_SIZE=0x2000
 CONFIG_SYS_BOOTM_LEN=0x800000
 CONFIG_SYS_LOAD_ADDR=0x40480000
 CONFIG_SPL=y
+CONFIG_IMX_BOOTAUX=y
 CONFIG_FIT=y
 CONFIG_FIT_EXTERNAL_OFFSET=0x3000
 CONFIG_SPL_LOAD_FIT=y
-- 
2.48.1


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

* [PATCH 2/3] arm64: imx: imx8mn-beacon: Enable BOOTAUX
  2025-05-02 10:58 [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX Adam Ford
@ 2025-05-02 10:58 ` Adam Ford
  2025-05-06  1:16   ` Peng Fan
  2025-05-02 10:58 ` [PATCH 3/3] arm64: imx: imx8mp-beacon: " Adam Ford
  2025-05-04  2:31 ` [PATCH 1/3] arm64: imx: imx8mm-beacon: " Fabio Estevam
  2 siblings, 1 reply; 5+ messages in thread
From: Adam Ford @ 2025-05-02 10:58 UTC (permalink / raw)
  To: u-boot
  Cc: festevam, aford, Adam Ford, Tom Rini, Simon Glass, Quentin Schulz,
	Sean Anderson, Marek Vasut, Peng Fan

In order to run binaries targeting the Cortex-M7,
BOOTAUX is required.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/imx8mn_beacon_defconfig b/configs/imx8mn_beacon_defconfig
index c605567d9a6..115288aa27f 100644
--- a/configs/imx8mn_beacon_defconfig
+++ b/configs/imx8mn_beacon_defconfig
@@ -29,6 +29,7 @@ CONFIG_SPL=y
 CONFIG_SPL_IMX_ROMAPI_LOADADDR=0x48000000
 CONFIG_SYS_MEMTEST_START=0x40000000
 CONFIG_SYS_MEMTEST_END=0x44000000
+CONFIG_IMX_BOOTAUX=y
 CONFIG_REMAKE_ELF=y
 CONFIG_FIT=y
 CONFIG_FIT_EXTERNAL_OFFSET=0x3000
-- 
2.48.1


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

* [PATCH 3/3] arm64: imx: imx8mp-beacon: Enable BOOTAUX
  2025-05-02 10:58 [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX Adam Ford
  2025-05-02 10:58 ` [PATCH 2/3] arm64: imx: imx8mn-beacon: " Adam Ford
@ 2025-05-02 10:58 ` Adam Ford
  2025-05-04  2:31 ` [PATCH 1/3] arm64: imx: imx8mm-beacon: " Fabio Estevam
  2 siblings, 0 replies; 5+ messages in thread
From: Adam Ford @ 2025-05-02 10:58 UTC (permalink / raw)
  To: u-boot
  Cc: festevam, aford, Adam Ford, Tom Rini, Simon Glass, Sean Anderson,
	Quentin Schulz, Marek Vasut

In order to run binaries targeting the Cortex-M7, BOOTAUX is
required.

Signed-off-by: Adam Ford <aford173@gmail.com>

diff --git a/configs/imx8mp_beacon_defconfig b/configs/imx8mp_beacon_defconfig
index 288626c1511..9f6fabc894f 100644
--- a/configs/imx8mp_beacon_defconfig
+++ b/configs/imx8mp_beacon_defconfig
@@ -33,6 +33,7 @@ CONFIG_ARMV8_SET_SMPEN=y
 CONFIG_ARMV8_EA_EL3_FIRST=y
 CONFIG_SPL_IMX_ROMAPI_LOADADDR=0x48000000
 CONFIG_PCI=y
+CONFIG_IMX_BOOTAUX=y
 # CONFIG_ANDROID_BOOT_IMAGE is not set
 CONFIG_FIT=y
 CONFIG_FIT_EXTERNAL_OFFSET=0x3000
-- 
2.48.1


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

* Re: [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX
  2025-05-02 10:58 [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX Adam Ford
  2025-05-02 10:58 ` [PATCH 2/3] arm64: imx: imx8mn-beacon: " Adam Ford
  2025-05-02 10:58 ` [PATCH 3/3] arm64: imx: imx8mp-beacon: " Adam Ford
@ 2025-05-04  2:31 ` Fabio Estevam
  2 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2025-05-04  2:31 UTC (permalink / raw)
  To: Adam Ford
  Cc: u-boot, aford, Tom Rini, Simon Glass, Sean Anderson,
	Quentin Schulz, Marek Vasut

On Fri, May 2, 2025 at 7:59 AM Adam Ford <aford173@gmail.com> wrote:
>
> In order to run binaries targeting the Cortex-M4,
> BOOTAUX is required.
>
> Signed-off-by: Adam Ford <aford173@gmail.com>

Applied all, thanks.

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

* RE: [PATCH 2/3] arm64: imx: imx8mn-beacon: Enable BOOTAUX
  2025-05-02 10:58 ` [PATCH 2/3] arm64: imx: imx8mn-beacon: " Adam Ford
@ 2025-05-06  1:16   ` Peng Fan
  0 siblings, 0 replies; 5+ messages in thread
From: Peng Fan @ 2025-05-06  1:16 UTC (permalink / raw)
  To: Adam Ford, u-boot@lists.denx.de
  Cc: festevam@gmail.com, aford@beaconembedded.com, Tom Rini,
	Simon Glass, Quentin Schulz, Sean Anderson, Marek Vasut

> Subject: [PATCH 2/3] arm64: imx: imx8mn-beacon: Enable BOOTAUX
> 
> In order to run binaries targeting the Cortex-M7, BOOTAUX is required.
> 
> Signed-off-by: Adam Ford <aford173@gmail.com>
> 
> diff --git a/configs/imx8mn_beacon_defconfig
> b/configs/imx8mn_beacon_defconfig index
> c605567d9a6..115288aa27f 100644
> --- a/configs/imx8mn_beacon_defconfig
> +++ b/configs/imx8mn_beacon_defconfig
> @@ -29,6 +29,7 @@ CONFIG_SPL=y
>  CONFIG_SPL_IMX_ROMAPI_LOADADDR=0x48000000
>  CONFIG_SYS_MEMTEST_START=0x40000000
>  CONFIG_SYS_MEMTEST_END=0x44000000
> +CONFIG_IMX_BOOTAUX=y
>  CONFIG_REMAKE_ELF=y
>  CONFIG_FIT=y
>  CONFIG_FIT_EXTERNAL_OFFSET=0x3000
> --

Reviewed-by: Peng Fan <peng.fan@nxp.com>

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

end of thread, other threads:[~2025-05-06  1:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-02 10:58 [PATCH 1/3] arm64: imx: imx8mm-beacon: Enable BOOTAUX Adam Ford
2025-05-02 10:58 ` [PATCH 2/3] arm64: imx: imx8mn-beacon: " Adam Ford
2025-05-06  1:16   ` Peng Fan
2025-05-02 10:58 ` [PATCH 3/3] arm64: imx: imx8mp-beacon: " Adam Ford
2025-05-04  2:31 ` [PATCH 1/3] arm64: imx: imx8mm-beacon: " Fabio Estevam

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