1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (c) 2016, NVIDIA CORPORATION. 4 */ 5 6 #include <common.h> 7 #include <asm/arch/tegra.h> 8 9 int board_early_init_f(void) 10 { 11 return 0; 12 } 13 14 __weak int tegra_board_init(void) 15 { 16 return 0; 17 } 18 19 int board_init(void) 20 { 21 return tegra_board_init(); 22 } 23 24 __weak int tegra_soc_board_init_late(void) 25 { 26 return 0; 27 } 28 29 int board_late_init(void) 30 { 31 return tegra_soc_board_init_late(); 32 } 33