mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 22:36:05 +00:00
verdin-imx8mm: improve and extend boot devices
- Annotate boot devices available in spl_board_boot_device(). - Drop SD3_BOOT/MMC3_BOOT not available for boot on Verdin iMX8M Mini. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
This commit is contained in:
parent
1e2135356c
commit
cc34e9cb0c
1 changed files with 2 additions and 6 deletions
|
@ -34,14 +34,11 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
int spl_board_boot_device(enum boot_device boot_dev_spl)
|
||||
{
|
||||
switch (boot_dev_spl) {
|
||||
case MMC1_BOOT:
|
||||
case MMC1_BOOT: /* eMMC */
|
||||
return BOOT_DEVICE_MMC1;
|
||||
case SD2_BOOT:
|
||||
case SD2_BOOT: /* SD card */
|
||||
case MMC2_BOOT:
|
||||
return BOOT_DEVICE_MMC2;
|
||||
case SD3_BOOT:
|
||||
case MMC3_BOOT:
|
||||
return BOOT_DEVICE_MMC1;
|
||||
case USB_BOOT:
|
||||
return BOOT_DEVICE_BOARD;
|
||||
default:
|
||||
|
@ -83,7 +80,6 @@ int board_fit_config_name_match(const char *name)
|
|||
}
|
||||
#endif
|
||||
|
||||
|
||||
__weak void board_early_init(void)
|
||||
{
|
||||
init_uart_clk(0);
|
||||
|
|
Loading…
Add table
Reference in a new issue