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