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