diff options
author | Andrew F. Davis | 2017-07-10 14:45:54 -0500 |
---|---|---|
committer | Tom Rini | 2017-07-22 22:22:45 -0400 |
commit | 7fe463f54f36b583f8577b321ab9f4c09c1a1a5d (patch) | |
tree | a78e208b4c92c6f52226fe6604a3bee3c7044cf2 /board/ti/am43xx | |
parent | 3630094cf931422061a03352a965ad269fe37e52 (diff) |
board: ti: am43xx: Add FDT fixup for HS devices
Disable RNG and add TEE to FDT used on HS devices.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'board/ti/am43xx')
-rw-r--r-- | board/ti/am43xx/board.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index 96032215a65..933596d59c8 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -838,6 +838,15 @@ int board_eth_init(bd_t *bis) } #endif +#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) +int ft_board_setup(void *blob, bd_t *bd) +{ + ft_cpu_setup(blob, bd); + + return 0; +} +#endif + #ifdef CONFIG_SPL_LOAD_FIT int board_fit_config_name_match(const char *name) { |