aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Gerlach2020-04-30 19:27:07 -0500
committerDave Gerlach2020-05-04 17:31:21 -0500
commitc7c9e7629015ecbd663c73fb734045bcbd84ec93 (patch)
tree468817217e68e0d005314f5c2972d3b17618aefa /soc/j721e/evm/sec-cfg.c
parent79f3807e0b169f2029dec9f3a679c231f4deb625 (diff)
downloadk3-image-gen-c7c9e7629015ecbd663c73fb734045bcbd84ec93.tar.gz
k3-image-gen-c7c9e7629015ecbd663c73fb734045bcbd84ec93.tar.xz
k3-image-gen-c7c9e7629015ecbd663c73fb734045bcbd84ec93.zip
sec-cfg: Add sa2ul_config section
Update the common.h headers to add new defines from SYSFW 2020.04. Starting from SYSFW v2020.04, an sa2ul_config section is mandatory in the security config. Otherwise the boot fails. Fix this by adding a section for sa2ul_config with all parameters configured to 0. Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Diffstat (limited to 'soc/j721e/evm/sec-cfg.c')
-rw-r--r--soc/j721e/evm/sec-cfg.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/soc/j721e/evm/sec-cfg.c b/soc/j721e/evm/sec-cfg.c
index 153f059c5..ddbc04429 100644
--- a/soc/j721e/evm/sec-cfg.c
+++ b/soc/j721e/evm/sec-cfg.c
@@ -82,4 +82,13 @@ const struct boardcfg_security j721e_boardcfg_security_data = {
82 .allow_dkek_export_tisci = 0x5A, 82 .allow_dkek_export_tisci = 0x5A,
83 .rsvd = {0, 0, 0}, 83 .rsvd = {0, 0, 0},
84 }, 84 },
85
86 /* SA2UL configuration */
87 .sa2ul_cfg = {
88 .subhdr = {
89 .magic = BOARDCFG_SA2UL_CFG_MAGIC_NUM_RSVD,
90 .size = 0,
91 },
92 .rsvd = {0, 0, 0, 0},
93 },
85}; 94};