blob: 876ccba5e599cb45fea9351eb92448d47cbd2e2b [file] [log] [blame]
Stephen Warren03667eb2016-05-12 13:32:55 -06001/*
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#include <asm/arch-tegra/mmc.h>
10#include <asm/arch-tegra/tegra_mmc.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
Stephen Warren03667eb2016-05-12 13:32:55 -060014int board_early_init_f(void)
15{
16 return 0;
17}
18
19int board_init(void)
20{
21 return 0;
22}
23
24int board_late_init(void)
25{
26 return 0;
27}
28
Stephen Warren03667eb2016-05-12 13:32:55 -060029void pad_init_mmc(struct mmc_host *host)
30{
31}
32
33int board_mmc_init(bd_t *bd)
34{
35 tegra_mmc_init();
36
37 return 0;
38}
39
40int ft_system_setup(void *blob, bd_t *bd)
41{
42 return 0;
43}