All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell/master PATCHv2] ti-sci-fw: Fix for k3-image-gen issue for combined boot images
@ 2021-12-09 18:07 praneeth
  2021-12-09 18:23 ` [meta-ti] " Vignesh Raghavendra
  0 siblings, 1 reply; 3+ messages in thread
From: praneeth @ 2021-12-09 18:07 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko; +Cc: denis, Yogesh Siraswar, meta-ti

From: Yogesh Siraswar <yogeshs@ti.com>

This is temporary fix for combined boot images for KIG in meta-ti till
the patch is integrated.

Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
---
v2: moved Upstream-Status description to .patch and updated commitmsg

 ...gning-of-binaries-for-combined-boot-.patch | 64 +++++++++++++++++++
 recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb        |  5 ++
 2 files changed, 69 insertions(+)
 create mode 100644 recipes-bsp/ti-sci-fw/files/0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch

diff --git a/recipes-bsp/ti-sci-fw/files/0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch b/recipes-bsp/ti-sci-fw/files/0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch
new file mode 100644
index 00000000..196f3d3f
--- /dev/null
+++ b/recipes-bsp/ti-sci-fw/files/0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch
@@ -0,0 +1,64 @@
+From 2efc79702a47f9cbbeecbb2f604577f1ec8c95ba Mon Sep 17 00:00:00 2001
+From: Yogesh Siraswar <yogeshs@ti.com>
+Date: Wed, 8 Dec 2021 17:50:19 -0600
+Subject: [KIG PATCH] Makefile: Skip signing of binaries for combined boot hs
+ images
+
+Combined sysfw binaries used in tiboot.bin do not require signed images.
+This fixes issues with AM64x HS and J7200 HS boot images
+
+Upstream-Status: Submitted
+Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
+---
+ Makefile           | 8 +++++++-
+ soc/am64x/Makefile | 1 +
+ soc/j7200/Makefile | 1 +
+ 3 files changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 47b3b20..ab465df 100644
+--- a/Makefile
++++ b/Makefile
+@@ -215,8 +215,14 @@ $(soc_objroot)/%.o: %.c
+ 	$(CROSS_COMPILE)gcc $(CFLAGS) -c -o $@-pre-validated $<
+ 	python3 ./scripts/sysfw_boardcfg_validator.py -b $@-pre-validated -i -o $@ -s $(SOC) -l $@.log
+ 
+-# On HS board configuration binaries must be signed
++# On HS board configuration binaries must be signed unless it is combined boot image
+ ifdef HS
++ifndef COMBINED_BOOT_IMAGE
++SIGN_BINARY=1
++endif
++endif
++
++ifdef SIGN_BINARY
+ %.bin.unsigned: %.o
+ 	$(CROSS_COMPILE)objcopy -S -O binary $< $@
+ %.bin: %.bin.unsigned
+diff --git a/soc/am64x/Makefile b/soc/am64x/Makefile
+index bfbe3e5..33ebbd0 100644
+--- a/soc/am64x/Makefile
++++ b/soc/am64x/Makefile
+@@ -31,6 +31,7 @@
+ #
+ 
+ SBL_LOADADDDR ?= 0x70000000
++COMBINED_BOOT_IMAGE = 1
+ COMBINED_SYSFW_BRDCFG_LOADADDR ?= 0x7b000
+ LOADADDR  ?= 0x44000
+ SCIFS = sci
+diff --git a/soc/j7200/Makefile b/soc/j7200/Makefile
+index 3b754f7..0baef51 100644
+--- a/soc/j7200/Makefile
++++ b/soc/j7200/Makefile
+@@ -31,6 +31,7 @@
+ #
+ 
+ SBL_LOADADDDR ?= 0x41c00000
++COMBINED_BOOT_IMAGE = 1
+ COMBINED_TIFS_BRDCFG_LOADADDR ?= 0x7f000
+ COMBINED_DM_BRDCFG_LOADADDR ?= 0x41c80000
+ LOADADDR ?= 0x40000
+-- 
+2.17.1
+
diff --git a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
index 6d48bf23..13ae1f6b 100644
--- a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
+++ b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
@@ -47,6 +47,11 @@ LD[unexport] = "1"
 
 do_configure[noexec] = "1"
 
+SRC_URI_append_j7200-hs-evm-k3r5 = "\ 
+	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
+SRC_URI_append_am64xx-hs-evm-k3r5 = "\
+	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
+
 EXTRA_OEMAKE = "\
     CROSS_COMPILE=${TARGET_PREFIX} SYSFW_DL_URL='' SYSFW_HS_DL_URL='' SYSFW_HS_INNER_CERT_DL_URL='' \
     SYSFW_PATH="${SYSFW_TISCI}" SOC=${SYSFW_SOC} CONFIG=${SYSFW_CONFIG} \
-- 
2.17.1


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

* Re: [meta-ti] [dunfell/master PATCHv2] ti-sci-fw: Fix for k3-image-gen issue for combined boot images
  2021-12-09 18:07 [dunfell/master PATCHv2] ti-sci-fw: Fix for k3-image-gen issue for combined boot images praneeth
@ 2021-12-09 18:23 ` Vignesh Raghavendra
  2021-12-10  1:13   ` Yogesh Siraswar
  0 siblings, 1 reply; 3+ messages in thread
From: Vignesh Raghavendra @ 2021-12-09 18:23 UTC (permalink / raw)
  To: praneeth, Denys Dmytriyenko; +Cc: denis, Yogesh Siraswar, meta-ti



On 12/9/21 11:37 PM, praneeth via lists.yoctoproject.org wrote:
[...]
> @@ -0,0 +1,64 @@
> +From 2efc79702a47f9cbbeecbb2f604577f1ec8c95ba Mon Sep 17 00:00:00 2001
> +From: Yogesh Siraswar <yogeshs@ti.com>
> +Date: Wed, 8 Dec 2021 17:50:19 -0600
> +Subject: [KIG PATCH] Makefile: Skip signing of binaries for combined boot hs
> + images
> +
> +Combined sysfw binaries used in tiboot.bin do not require signed images.
> +This fixes issues with AM64x HS and J7200 HS boot images
> +
> +Upstream-Status: Submitted
> +Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
> +---
> + Makefile           | 8 +++++++-
> + soc/am64x/Makefile | 1 +
> + soc/j7200/Makefile | 1 +
> + 3 files changed, 9 insertions(+), 1 deletion(-)
> +
> +diff --git a/Makefile b/Makefile
> +index 47b3b20..ab465df 100644
> +--- a/Makefile
> ++++ b/Makefile
> +@@ -215,8 +215,14 @@ $(soc_objroot)/%.o: %.c
> + 	$(CROSS_COMPILE)gcc $(CFLAGS) -c -o $@-pre-validated $<
> + 	python3 ./scripts/sysfw_boardcfg_validator.py -b $@-pre-validated -i -o $@ -s $(SOC) -l $@.log
> + 
> +-# On HS board configuration binaries must be signed
> ++# On HS board configuration binaries must be signed unless it is combined boot image
> + ifdef HS
> ++ifndef COMBINED_BOOT_IMAGE
> ++SIGN_BINARY=1

No need to introduce COMBINED_BOOT_IMAGE or SIGN_BINARY. 
Use COMBINED_SYSFW_BRDCFG_LOADADDR like rest of Makefile does: 

Entire patch can be replaced with below diff:

diff --git a/Makefile b/Makefile
index 47b3b20..18e9eb5 100644
--- a/Makefile
+++ b/Makefile
@@ -217,10 +217,12 @@ $(soc_objroot)/%.o: %.c
 
 # On HS board configuration binaries must be signed
 ifdef HS
+ifneq (,$(COMBINED_SYSFW_BRDCFG_LOADADDR))
 %.bin.unsigned: %.o
        $(CROSS_COMPILE)objcopy -S -O binary $< $@
 %.bin: %.bin.unsigned
        $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh $< $@
+endif
 else
 %.bin: %.o
        $(CROSS_COMPILE)objcopy -S -O binary $< $@


> ++endif
> ++endif
> ++
> ++ifdef SIGN_BINARY
> + %.bin.unsigned: %.o
> + 	$(CROSS_COMPILE)objcopy -S -O binary $< $@
> + %.bin: %.bin.unsigned
> +diff --git a/soc/am64x/Makefile b/soc/am64x/Makefile
> +index bfbe3e5..33ebbd0 100644
> +--- a/soc/am64x/Makefile
> ++++ b/soc/am64x/Makefile
> +@@ -31,6 +31,7 @@
> + #
> + 
> + SBL_LOADADDDR ?= 0x70000000
> ++COMBINED_BOOT_IMAGE = 1
> + COMBINED_SYSFW_BRDCFG_LOADADDR ?= 0x7b000
> + LOADADDR  ?= 0x44000
> + SCIFS = sci
> +diff --git a/soc/j7200/Makefile b/soc/j7200/Makefile
> +index 3b754f7..0baef51 100644
> +--- a/soc/j7200/Makefile
> ++++ b/soc/j7200/Makefile
> +@@ -31,6 +31,7 @@
> + #
> + 
> + SBL_LOADADDDR ?= 0x41c00000
> ++COMBINED_BOOT_IMAGE = 1
> + COMBINED_TIFS_BRDCFG_LOADADDR ?= 0x7f000
> + COMBINED_DM_BRDCFG_LOADADDR ?= 0x41c80000
> + LOADADDR ?= 0x40000
> +-- 
> +2.17.1
> +
> diff --git a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
> index 6d48bf23..13ae1f6b 100644
> --- a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
> +++ b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
> @@ -47,6 +47,11 @@ LD[unexport] = "1"
>  
>  do_configure[noexec] = "1"
>  
> +SRC_URI_append_j7200-hs-evm-k3r5 = "\ 
> +	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
> +SRC_URI_append_am64xx-hs-evm-k3r5 = "\
> +	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
> +
>  EXTRA_OEMAKE = "\
>      CROSS_COMPILE=${TARGET_PREFIX} SYSFW_DL_URL='' SYSFW_HS_DL_URL='' SYSFW_HS_INNER_CERT_DL_URL='' \
>      SYSFW_PATH="${SYSFW_TISCI}" SOC=${SYSFW_SOC} CONFIG=${SYSFW_CONFIG} \
> 
> 
> 
> 
> 

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

* Re: [meta-ti] [dunfell/master PATCHv2] ti-sci-fw: Fix for k3-image-gen issue for combined boot images
  2021-12-09 18:23 ` [meta-ti] " Vignesh Raghavendra
@ 2021-12-10  1:13   ` Yogesh Siraswar
  0 siblings, 0 replies; 3+ messages in thread
From: Yogesh Siraswar @ 2021-12-10  1:13 UTC (permalink / raw)
  To: Vignesh Raghavendra, praneeth, Denys Dmytriyenko; +Cc: denis, meta-ti



On 12/9/2021 12:23 PM, Vignesh Raghavendra wrote:
> 
> 
> On 12/9/21 11:37 PM, praneeth via lists.yoctoproject.org wrote:
> [...]
>> @@ -0,0 +1,64 @@
>> +From 2efc79702a47f9cbbeecbb2f604577f1ec8c95ba Mon Sep 17 00:00:00 2001
>> +From: Yogesh Siraswar <yogeshs@ti.com>
>> +Date: Wed, 8 Dec 2021 17:50:19 -0600
>> +Subject: [KIG PATCH] Makefile: Skip signing of binaries for combined boot hs
>> + images
>> +
>> +Combined sysfw binaries used in tiboot.bin do not require signed images.
>> +This fixes issues with AM64x HS and J7200 HS boot images
>> +
>> +Upstream-Status: Submitted
>> +Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
>> +---
>> + Makefile           | 8 +++++++-
>> + soc/am64x/Makefile | 1 +
>> + soc/j7200/Makefile | 1 +
>> + 3 files changed, 9 insertions(+), 1 deletion(-)
>> +
>> +diff --git a/Makefile b/Makefile
>> +index 47b3b20..ab465df 100644
>> +--- a/Makefile
>> ++++ b/Makefile
>> +@@ -215,8 +215,14 @@ $(soc_objroot)/%.o: %.c
>> + 	$(CROSS_COMPILE)gcc $(CFLAGS) -c -o $@-pre-validated $<
>> + 	python3 ./scripts/sysfw_boardcfg_validator.py -b $@-pre-validated -i -o $@ -s $(SOC) -l $@.log
>> +
>> +-# On HS board configuration binaries must be signed
>> ++# On HS board configuration binaries must be signed unless it is combined boot image
>> + ifdef HS
>> ++ifndef COMBINED_BOOT_IMAGE
>> ++SIGN_BINARY=1
> 
> No need to introduce COMBINED_BOOT_IMAGE or SIGN_BINARY.
> Use COMBINED_SYSFW_BRDCFG_LOADADDR like rest of Makefile does:

I had done that before I realized that J7200 doesn't use 
COMBINED_SYSFW_BRDCFG_LOADADDR. So now instead of checking multiple 
COMBINED variables I just cleaned it up for simplicity.

> 
> Entire patch can be replaced with below diff:
> 
> diff --git a/Makefile b/Makefile
> index 47b3b20..18e9eb5 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -217,10 +217,12 @@ $(soc_objroot)/%.o: %.c
>   
>   # On HS board configuration binaries must be signed
>   ifdef HS
> +ifneq (,$(COMBINED_SYSFW_BRDCFG_LOADADDR))
>   %.bin.unsigned: %.o
>          $(CROSS_COMPILE)objcopy -S -O binary $< $@
>   %.bin: %.bin.unsigned
>          $(TI_SECURE_DEV_PKG)/scripts/secure-binary-image.sh $< $@
> +endif
>   else
>   %.bin: %.o
>          $(CROSS_COMPILE)objcopy -S -O binary $< $@
> 
> 
>> ++endif
>> ++endif
>> ++
>> ++ifdef SIGN_BINARY
>> + %.bin.unsigned: %.o
>> + 	$(CROSS_COMPILE)objcopy -S -O binary $< $@
>> + %.bin: %.bin.unsigned
>> +diff --git a/soc/am64x/Makefile b/soc/am64x/Makefile
>> +index bfbe3e5..33ebbd0 100644
>> +--- a/soc/am64x/Makefile
>> ++++ b/soc/am64x/Makefile
>> +@@ -31,6 +31,7 @@
>> + #
>> +
>> + SBL_LOADADDDR ?= 0x70000000
>> ++COMBINED_BOOT_IMAGE = 1
>> + COMBINED_SYSFW_BRDCFG_LOADADDR ?= 0x7b000
>> + LOADADDR  ?= 0x44000
>> + SCIFS = sci
>> +diff --git a/soc/j7200/Makefile b/soc/j7200/Makefile
>> +index 3b754f7..0baef51 100644
>> +--- a/soc/j7200/Makefile
>> ++++ b/soc/j7200/Makefile
>> +@@ -31,6 +31,7 @@
>> + #
>> +
>> + SBL_LOADADDDR ?= 0x41c00000
>> ++COMBINED_BOOT_IMAGE = 1
>> + COMBINED_TIFS_BRDCFG_LOADADDR ?= 0x7f000
>> + COMBINED_DM_BRDCFG_LOADADDR ?= 0x41c80000
>> + LOADADDR ?= 0x40000
>> +--
>> +2.17.1
>> +
>> diff --git a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
>> index 6d48bf23..13ae1f6b 100644
>> --- a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
>> +++ b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
>> @@ -47,6 +47,11 @@ LD[unexport] = "1"
>>   
>>   do_configure[noexec] = "1"
>>   
>> +SRC_URI_append_j7200-hs-evm-k3r5 = "\
>> +	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
>> +SRC_URI_append_am64xx-hs-evm-k3r5 = "\
>> +	file://0001-Makefile-Skip-signing-of-binaries-for-combined-boot-.patch;patchdir=../imggen"
>> +
>>   EXTRA_OEMAKE = "\
>>       CROSS_COMPILE=${TARGET_PREFIX} SYSFW_DL_URL='' SYSFW_HS_DL_URL='' SYSFW_HS_INNER_CERT_DL_URL='' \
>>       SYSFW_PATH="${SYSFW_TISCI}" SOC=${SYSFW_SOC} CONFIG=${SYSFW_CONFIG} \
>>
>>
>>
>> 
>>

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

end of thread, other threads:[~2021-12-10  1:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-09 18:07 [dunfell/master PATCHv2] ti-sci-fw: Fix for k3-image-gen issue for combined boot images praneeth
2021-12-09 18:23 ` [meta-ti] " Vignesh Raghavendra
2021-12-10  1:13   ` Yogesh Siraswar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.