diff options
author | Dave Gerlach | 2020-09-24 17:37:03 -0500 |
---|---|---|
committer | Dave Gerlach | 2020-10-16 13:05:46 -0500 |
commit | 8ca1ad4cffaa7516857e85883cb5731edd2a179f (patch) | |
tree | fe315303349cdd2db818d2075a53c7ef3930b036 /soc/am65x_sr2 | |
parent | c11c788cf8066d47ce37b668fb0d607c52c3f272 (diff) | |
download | k3-image-gen-8ca1ad4cffaa7516857e85883cb5731edd2a179f.tar.gz k3-image-gen-8ca1ad4cffaa7516857e85883cb5731edd2a179f.tar.xz k3-image-gen-8ca1ad4cffaa7516857e85883cb5731edd2a179f.zip |
sec-cfg: Add secure_handover_config section
Update the common.h headers to add new defines from
SYSFW 2020.08.
Starting from SYSFW v2020.08, a secure_handover_config section
is mandatory in the security config. Otherwise the boot fails
on all SoCs.
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Diffstat (limited to 'soc/am65x_sr2')
-rw-r--r-- | soc/am65x_sr2/evm/sec-cfg.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/soc/am65x_sr2/evm/sec-cfg.c b/soc/am65x_sr2/evm/sec-cfg.c index 486036fca..f51d5bbe9 100644 --- a/soc/am65x_sr2/evm/sec-cfg.c +++ b/soc/am65x_sr2/evm/sec-cfg.c | |||
@@ -102,4 +102,15 @@ const struct boardcfg_security am65_boardcfg_security_data = { | |||
102 | .min_cert_rev = 0x0, | 102 | .min_cert_rev = 0x0, |
103 | .jtag_unlock_hosts = {0, 0, 0, 0}, | 103 | .jtag_unlock_hosts = {0, 0, 0, 0}, |
104 | }, | 104 | }, |
105 | |||
106 | /* Secure Handover Configuration */ | ||
107 | .sec_handover_cfg = { | ||
108 | .subhdr = { | ||
109 | .magic = BOARDCFG_SEC_HANDOVER_CFG_MAGIC_NUM, | ||
110 | .size = sizeof(struct boardcfg_sec_handover), | ||
111 | }, | ||
112 | .handover_msg_sender = 0, | ||
113 | .handover_to_host_id = 0, | ||
114 | .rsvd = {0,0,0,0}, | ||
115 | }, | ||
105 | }; | 116 | }; |