• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision3289c806d3e169eb5e39b56716e863768b269373 (tree)
Time2022-07-26 02:02:04
AuthorAndrew Davis <afd@ti.c...>
CommiterTom Rini

Log Message

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>

Change Summary

Incremental Difference

--- 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)
115115 return ret;
116116 }
117117
118-#if defined(CONFIG_TI_SECURE_DEVICE)
119- /* Make Crypto HW reserved for secure world use */
120- ret = fdt_disable_node(blob, "/bus@100000/crypto@4e00000");
121- if (ret < 0)
122- ret = fdt_disable_node(blob,
123- "/interconnect@100000/crypto@4E00000");
124- if (ret)
125- printf("%s: disabling SA2UL failed %d\n", __func__, ret);
126-#endif
127-
128118 return 0;
129119 }
130120 #endif