mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-01 18:51:33 +02:00
board: ti: am654: Disable SA2UL node for HS devices
On HS devices the access to SA2UL is restricted on the non-secure ARM side, disable the node in DT to prevent firewall violations. We used to only disable the TRNG but now that we have full SA2UL support in Linux, in which TRNG is a sub-module, disable both by disabling the parent SA2UL node. Signed-off-by: Andrew F. Davis <afd@ti.com>
This commit is contained in:
parent
eab48865f9
commit
83a0e9ddaa
@ -108,10 +108,10 @@ int ft_board_setup(void *blob, bd_t *bd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_TI_SECURE_DEVICE)
|
#if defined(CONFIG_TI_SECURE_DEVICE)
|
||||||
/* Make HW RNG reserved for secure world use */
|
/* Make Crypto HW reserved for secure world use */
|
||||||
ret = fdt_disable_node(blob, "/interconnect@100000/trng@4e10000");
|
ret = fdt_disable_node(blob, "/interconnect@100000/crypto@4E00000");
|
||||||
if (ret)
|
if (ret)
|
||||||
printf("%s: disabling TRGN failed %d\n", __func__, ret);
|
printf("%s: disabling SA2UL failed %d\n", __func__, ret);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user