summaryrefslogtreecommitdiff
path: root/board/ti
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2022-07-13 11:12:48 -0500
committerTom Rini <trini@konsulko.com>2022-07-25 13:02:04 -0400
commit3289c806d3e169eb5e39b56716e863768b269373 (patch)
treea651624b490273ccd5a57bbf794ee7c73f7a5f5d /board/ti
parentcab8510821afbde16c8de27c4da0c5ed6b6195d3 (diff)
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 <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti')
-rw-r--r--board/ti/am65x/evm.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/board/ti/am65x/evm.c b/board/ti/am65x/evm.c
index 7182a8cad1..8a0a506a3e 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