Skip to content
Snippets Groups Projects
Commit e0284948 authored by Stephen Warren's avatar Stephen Warren Committed by Albert ARIBAUD (U-Boot)
Browse files

tegra: add pin_mux_spi() board initialization function


Boards can override this to set up the pinmux correctly to access serial
flash.

Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent a016e144
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,12 @@ void __pin_mux_usb(void)
void pin_mux_usb(void) __attribute__((weak, alias("__pin_mux_usb")));
void __pin_mux_spi(void)
{
}
void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi")));
/*
* Routine: power_det_init
* Description: turn off power detects
......@@ -95,6 +101,7 @@ int board_init(void)
gpio_config_uart();
#endif
#ifdef CONFIG_TEGRA_SPI
pin_mux_spi();
spi_init();
#endif
/* boot param addr */
......
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