diff options
author | Michael Trimarchi <michael@amarulasolutions.com> | 2024-02-26 08:14:15 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-03-05 08:40:15 -0500 |
commit | c8a66c35de34708b9206a9e5ff7c5d318481002d (patch) | |
tree | 6d228703c9d820c762a7ec5c6c729653810b52bc | |
parent | 8b4ac5846206f72e53d7fc5bdb55372e05c97556 (diff) | |
download | u-boot-WIP/05Mar2024-next.zip u-boot-WIP/05Mar2024-next.tar.gz u-boot-WIP/05Mar2024-next.tar.bz2 |
arm: dts: k3-binman: Make optee optional as requirementWIP/05Mar2024-next
Allow boards that use ti_spl_template to not use optee part in
configuration.
Vendor can have module with 256 Mb of memory and they try to optimize
the available memory just using the essential components.
This change allow to remove tee from configuration without binman
fail.
configurations {
default = "conf-0";
conf-0 {
description = "k3-am62_ccm_m3";
firmware = "atf";
loadables = "dm", "spl";
fdt = "fdt-0";
};
};
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
-rw-r--r-- | arch/arm/dts/k3-binman.dtsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/dts/k3-binman.dtsi b/arch/arm/dts/k3-binman.dtsi index 758c8bf..5ef5af3 100644 --- a/arch/arm/dts/k3-binman.dtsi +++ b/arch/arm/dts/k3-binman.dtsi @@ -293,6 +293,7 @@ keyfile = "custMpk.pem"; }; tee: tee-os { + optional; }; }; @@ -360,6 +361,7 @@ entry = <0x9e800000>; tee-os { filename = "tee-raw.bin"; + optional; }; }; |