From: Andrew Davis Date: Wed, 13 Jul 2022 16:12:48 +0000 (-0500) Subject: board: ti: am65x: Do not disable SA2UL in DT X-Git-Tag: v2022.10-rc1~2^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3289c806d3e169eb5e39b56716e863768b269373;p=pandora-u-boot.git board: ti: am65x: Do not disable SA2UL in DT This is no longer needed as the SA2UL can now be shared with Linux. Leave the SA2UL DT node enabled. Signed-off-by: Andrew Davis Reviewed-by: Tom Rini --- diff --git a/board/ti/am65x/evm.c b/board/ti/am65x/evm.c index 7182a8cad1a..8a0a506a3e3 100644 --- a/board/ti/am65x/evm.c +++ b/board/ti/am65x/evm.c @@ -115,16 +115,6 @@ int ft_board_setup(void *blob, struct bd_info *bd) return ret; } -#if defined(CONFIG_TI_SECURE_DEVICE) - /* Make Crypto HW reserved for secure world use */ - ret = fdt_disable_node(blob, "/bus@100000/crypto@4e00000"); - if (ret < 0) - ret = fdt_disable_node(blob, - "/interconnect@100000/crypto@4E00000"); - if (ret) - printf("%s: disabling SA2UL failed %d\n", __func__, ret); -#endif - return 0; } #endif