* [PATCH] configs: am62ax: enable secure device configs by default
@ 2023-03-17 23:37 Bryan Brattlof
2023-03-20 21:50 ` Tom Rini
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Bryan Brattlof @ 2023-03-17 23:37 UTC (permalink / raw)
To: Tom Rini
Cc: UBoot Mailing List, Kamlesh Gurudasani, Judith Mendez,
Bryan Brattlof
TI's security enforcing SoCs will authenticate each binary it loads by
comparing it's signature with keys etched into the SoC during the boot
up process. The am62ax family of SoCs by default will have some level of
security enforcement checking. To keep things as simple as possible,
enable the CONFIG_TI_SECURE_DEVICE options by default so all levels of
secure SoCs will work out of the box
Enable the CONFIG_TI_SECURE_DEVICE by default
Signed-off-by: Bryan Brattlof <bb@ti.com>
---
configs/am62ax_evm_a53_defconfig | 1 +
configs/am62ax_evm_r5_defconfig | 2 ++
2 files changed, 3 insertions(+)
diff --git a/configs/am62ax_evm_a53_defconfig b/configs/am62ax_evm_a53_defconfig
index 8d6428f22eb11..c7aed9ad33520 100644
--- a/configs/am62ax_evm_a53_defconfig
+++ b/configs/am62ax_evm_a53_defconfig
@@ -1,5 +1,6 @@
CONFIG_ARM=y
CONFIG_ARCH_K3=y
+CONFIG_TI_SECURE_DEVICE=y
CONFIG_SYS_MALLOC_F_LEN=0x8000
CONFIG_SPL_LIBCOMMON_SUPPORT=y
CONFIG_SPL_LIBGENERIC_SUPPORT=y
diff --git a/configs/am62ax_evm_r5_defconfig b/configs/am62ax_evm_r5_defconfig
index fac48fbd12608..e5bee144466ec 100644
--- a/configs/am62ax_evm_r5_defconfig
+++ b/configs/am62ax_evm_r5_defconfig
@@ -1,5 +1,6 @@
CONFIG_ARM=y
CONFIG_ARCH_K3=y
+CONFIG_TI_SECURE_DEVICE=y
CONFIG_SYS_MALLOC_F_LEN=0x9000
CONFIG_SPL_LIBCOMMON_SUPPORT=y
CONFIG_SPL_LIBGENERIC_SUPPORT=y
@@ -52,6 +53,7 @@ CONFIG_SPL_RAM_SUPPORT=y
CONFIG_SPL_RAM_DEVICE=y
CONFIG_SPL_REMOTEPROC=y
CONFIG_SPL_THERMAL=y
+CONFIG_SPL_YMODEM_SUPPORT=y
CONFIG_HUSH_PARSER=y
CONFIG_CMD_ASKENV=y
CONFIG_CMD_DFU=y
base-commit: 318af47668aa2347ca9bbf2114cb9af1d8739aca
--
2.40.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] configs: am62ax: enable secure device configs by default
2023-03-17 23:37 [PATCH] configs: am62ax: enable secure device configs by default Bryan Brattlof
@ 2023-03-20 21:50 ` Tom Rini
2023-03-21 15:03 ` Kamlesh Gurudasani
2023-03-30 1:54 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-03-20 21:50 UTC (permalink / raw)
To: Bryan Brattlof; +Cc: UBoot Mailing List, Kamlesh Gurudasani, Judith Mendez
[-- Attachment #1: Type: text/plain, Size: 637 bytes --]
On Fri, Mar 17, 2023 at 06:37:11PM -0500, Bryan Brattlof wrote:
> TI's security enforcing SoCs will authenticate each binary it loads by
> comparing it's signature with keys etched into the SoC during the boot
> up process. The am62ax family of SoCs by default will have some level of
> security enforcement checking. To keep things as simple as possible,
> enable the CONFIG_TI_SECURE_DEVICE options by default so all levels of
> secure SoCs will work out of the box
>
> Enable the CONFIG_TI_SECURE_DEVICE by default
>
> Signed-off-by: Bryan Brattlof <bb@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] configs: am62ax: enable secure device configs by default
2023-03-17 23:37 [PATCH] configs: am62ax: enable secure device configs by default Bryan Brattlof
2023-03-20 21:50 ` Tom Rini
@ 2023-03-21 15:03 ` Kamlesh Gurudasani
2023-03-30 1:54 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Kamlesh Gurudasani @ 2023-03-21 15:03 UTC (permalink / raw)
To: Bryan Brattlof, Tom Rini
Cc: UBoot Mailing List, Judith Mendez, Bryan Brattlof
Bryan Brattlof <bb@ti.com> writes:
> TI's security enforcing SoCs will authenticate each binary it loads by
> comparing it's signature with keys etched into the SoC during the boot
> up process. The am62ax family of SoCs by default will have some level of
> security enforcement checking. To keep things as simple as possible,
> enable the CONFIG_TI_SECURE_DEVICE options by default so all levels of
> secure SoCs will work out of the box
>
> Enable the CONFIG_TI_SECURE_DEVICE by default
>
> Signed-off-by: Bryan Brattlof <bb@ti.com>
Reviewed-by: Kamlesh Gurudasani <kamlesh@ti.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] configs: am62ax: enable secure device configs by default
2023-03-17 23:37 [PATCH] configs: am62ax: enable secure device configs by default Bryan Brattlof
2023-03-20 21:50 ` Tom Rini
2023-03-21 15:03 ` Kamlesh Gurudasani
@ 2023-03-30 1:54 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-03-30 1:54 UTC (permalink / raw)
To: Bryan Brattlof; +Cc: UBoot Mailing List, Kamlesh Gurudasani, Judith Mendez
[-- Attachment #1: Type: text/plain, Size: 724 bytes --]
On Fri, Mar 17, 2023 at 06:37:11PM -0500, Bryan Brattlof wrote:
> TI's security enforcing SoCs will authenticate each binary it loads by
> comparing it's signature with keys etched into the SoC during the boot
> up process. The am62ax family of SoCs by default will have some level of
> security enforcement checking. To keep things as simple as possible,
> enable the CONFIG_TI_SECURE_DEVICE options by default so all levels of
> secure SoCs will work out of the box
>
> Enable the CONFIG_TI_SECURE_DEVICE by default
>
> Signed-off-by: Bryan Brattlof <bb@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Kamlesh Gurudasani <kamlesh@ti.com>
Applied to u-boot/next, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-30 1:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-17 23:37 [PATCH] configs: am62ax: enable secure device configs by default Bryan Brattlof
2023-03-20 21:50 ` Tom Rini
2023-03-21 15:03 ` Kamlesh Gurudasani
2023-03-30 1:54 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox