Skip to content
Snippets Groups Projects
Commit c0be77db authored by Stephen Warren's avatar Stephen Warren Committed by Tom Warren
Browse files

ARM: tegra: set MMC pin mux in board_init()


Most other pin mux is configured in this function. This removes the
need to do it in an MMC-specific initialization function, which is good
since that function is going away later in this series.

Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent f53c4e4b
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,7 @@ U_BOOT_DEVICE(tegra_gpios) = { ...@@ -53,6 +53,7 @@ U_BOOT_DEVICE(tegra_gpios) = {
__weak void pinmux_init(void) {} __weak void pinmux_init(void) {}
__weak void pin_mux_usb(void) {} __weak void pin_mux_usb(void) {}
__weak void pin_mux_spi(void) {} __weak void pin_mux_spi(void) {}
__weak void pin_mux_mmc(void) {}
__weak void gpio_early_init_uart(void) {} __weak void gpio_early_init_uart(void) {}
__weak void pin_mux_display(void) {} __weak void pin_mux_display(void) {}
__weak void start_cpu_fan(void) {} __weak void start_cpu_fan(void) {}
...@@ -127,6 +128,10 @@ int board_init(void) ...@@ -127,6 +128,10 @@ int board_init(void)
pin_mux_spi(); pin_mux_spi();
#endif #endif
#ifdef CONFIG_TEGRA_MMC
pin_mux_mmc();
#endif
/* Init is handled automatically in the driver-model case */ /* Init is handled automatically in the driver-model case */
#if defined(CONFIG_DM_VIDEO) #if defined(CONFIG_DM_VIDEO)
pin_mux_display(); pin_mux_display();
...@@ -230,18 +235,11 @@ int board_late_init(void) ...@@ -230,18 +235,11 @@ int board_late_init(void)
} }
#if defined(CONFIG_TEGRA_MMC) #if defined(CONFIG_TEGRA_MMC)
__weak void pin_mux_mmc(void)
{
}
/* this is a weak define that we are overriding */ /* this is a weak define that we are overriding */
int board_mmc_init(bd_t *bd) int board_mmc_init(bd_t *bd)
{ {
debug("%s called\n", __func__); debug("%s called\n", __func__);
/* Enable muxes, etc. for SDMMC controllers */
pin_mux_mmc();
debug("%s: init MMC\n", __func__); debug("%s: init MMC\n", __func__);
tegra_mmc_init(); tegra_mmc_init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment