mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
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: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:

committed by
Albert ARIBAUD (U-Boot)

parent
a016e144ed
commit
e028494887
@ -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 */
|
||||
|
Reference in New Issue
Block a user