* [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading
@ 2019-08-26 21:51 Andrew F. Davis
2019-08-26 21:51 ` [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices Andrew F. Davis
2019-09-14 23:54 ` [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Tom Rini
0 siblings, 2 replies; 4+ messages in thread
From: Andrew F. Davis @ 2019-08-26 21:51 UTC (permalink / raw)
To: u-boot
Some parts of these commands can be reused, add them to common files.
Signed-off-by: Andrew F. Davis <afd@ti.com>
---
include/configs/am65x_evm.h | 3 +++
include/configs/ti_armv7_common.h | 8 +++++++-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h
index 6072e4a48c..0249a20ba8 100644
--- a/include/configs/am65x_evm.h
+++ b/include/configs/am65x_evm.h
@@ -94,11 +94,14 @@
"done;\0" \
"get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
"${bootdir}/${name_kern}\0" \
+ "get_fit_mmc=load mmc ${bootpart} ${addr_fit} " \
+ "${bootdir}/${name_fit}\0" \
"partitions=" PARTS_DEFAULT
/* Incorporate settings into the U-Boot environment */
#define CONFIG_EXTRA_ENV_SETTINGS \
DEFAULT_MMC_TI_ARGS \
+ DEFAULT_FIT_TI_ARGS \
EXTRA_ENV_AM65X_BOARD_SETTINGS \
EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h
index 2058f8de0f..2de6bc2390 100644
--- a/include/configs/ti_armv7_common.h
+++ b/include/configs/ti_armv7_common.h
@@ -55,7 +55,13 @@
"addr_fit=0x90000000\0" \
"name_fit=fitImage\0" \
"update_to_fit=setenv loadaddr ${addr_fit}; setenv bootfile ${name_fit}\0" \
- "loadfit=run args_mmc; bootm ${loadaddr}#${fdtfile};\0" \
+ "get_overlaystring=" \
+ "for overlay in $overlay_files;" \
+ "do;" \
+ "setenv overlaystring ${overlaystring}'#'${overlay};" \
+ "done;\0" \
+ "run_fit=bootm ${loadaddr}#${fdtfile}${overlaystring}\0" \
+ "loadfit=run args_mmc; run run_fit;\0" \
/*
* DDR information. If the CONFIG_NR_DRAM_BANKS is not defined,
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices
2019-08-26 21:51 [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Andrew F. Davis
@ 2019-08-26 21:51 ` Andrew F. Davis
2019-09-14 23:54 ` Tom Rini
2019-09-14 23:54 ` [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Tom Rini
1 sibling, 1 reply; 4+ messages in thread
From: Andrew F. Davis @ 2019-08-26 21:51 UTC (permalink / raw)
To: u-boot
HS devices use the FIT post processing step to authenticate boot images.
Set the configured boot command to load FIT by default.
Signed-off-by: Andrew F. Davis <afd@ti.com>
---
configs/am65x_hs_evm_a53_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/am65x_hs_evm_a53_defconfig b/configs/am65x_hs_evm_a53_defconfig
index 87547ed9ab..28c92f9106 100644
--- a/configs/am65x_hs_evm_a53_defconfig
+++ b/configs/am65x_hs_evm_a53_defconfig
@@ -19,7 +19,7 @@ CONFIG_FIT_IMAGE_POST_PROCESS=y
CONFIG_SPL_LOAD_FIT=y
CONFIG_SPL_FIT_IMAGE_POST_PROCESS=y
CONFIG_OF_BOARD_SETUP=y
-CONFIG_BOOTCOMMAND="run findfdt; run envboot; run init_${boot}; run get_kern_${boot}; run get_fdt_${boot}; run get_overlay_${boot}; run run_kern"
+CONFIG_BOOTCOMMAND="run findfdt; run envboot; run init_${boot}; run get_fit_${boot}; run get_overlaystring; run run_fit"
# CONFIG_DISPLAY_CPUINFO is not set
CONFIG_SPL_TEXT_BASE=0x80080000
CONFIG_SPL_SYS_MALLOC_SIMPLE=y
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading
2019-08-26 21:51 [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Andrew F. Davis
2019-08-26 21:51 ` [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices Andrew F. Davis
@ 2019-09-14 23:54 ` Tom Rini
1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-09-14 23:54 UTC (permalink / raw)
To: u-boot
On Mon, Aug 26, 2019 at 05:51:00PM -0400, Andrew F. Davis wrote:
> Some parts of these commands can be reused, add them to common files.
>
> Signed-off-by: Andrew F. Davis <afd@ti.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190914/cc5f932f/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices
2019-08-26 21:51 ` [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices Andrew F. Davis
@ 2019-09-14 23:54 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-09-14 23:54 UTC (permalink / raw)
To: u-boot
On Mon, Aug 26, 2019 at 05:51:01PM -0400, Andrew F. Davis wrote:
> HS devices use the FIT post processing step to authenticate boot images.
> Set the configured boot command to load FIT by default.
>
> Signed-off-by: Andrew F. Davis <afd@ti.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190914/d945bdbe/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-09-14 23:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-26 21:51 [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Andrew F. Davis
2019-08-26 21:51 ` [U-Boot] [PATCH 2/2] configs: am65x_hs_evm: Use FIT images when booting HS devices Andrew F. Davis
2019-09-14 23:54 ` Tom Rini
2019-09-14 23:54 ` [U-Boot] [PATCH 1/2] configs: ti: Add environment support commands for FIT loading Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox