Skip to content
Snippets Groups Projects
Commit 06c3564d authored by Tim Harvey's avatar Tim Harvey Committed by Stefano Babic
Browse files

imx: ventana: display SPL boot device


Display what device the SPL will fetch uboot.img from

Signed-off-by: default avatarTim Harvey <tharvey@gateworks.com>
parent 560e8b3f
Branches
Tags
No related merge requests found
...@@ -570,6 +570,28 @@ void board_init_f(ulong dummy) ...@@ -570,6 +570,28 @@ void board_init_f(ulong dummy)
board_init_r(NULL, 0); board_init_r(NULL, 0);
} }
/* called from board_init_r after gd setup if CONFIG_SPL_BOARD_INIT defined */
/* its our chance to print info about boot device */
void spl_board_init(void)
{
/* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 */
u32 boot_device = spl_boot_device();
switch (boot_device) {
case BOOT_DEVICE_MMC1:
puts("Booting from MMC\n");
break;
case BOOT_DEVICE_NAND:
puts("Booting from NAND\n");
break;
case BOOT_DEVICE_SATA:
puts("Booting from SATA\n");
break;
default:
puts("Unknown boot device\n");
}
}
void reset_cpu(ulong addr) void reset_cpu(ulong addr)
{ {
} }
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#define __CONFIG_H #define __CONFIG_H
/* SPL */ /* SPL */
#define CONFIG_SPL_BOARD_INIT
#define CONFIG_SPL_NAND_SUPPORT #define CONFIG_SPL_NAND_SUPPORT
#define CONFIG_SPL_MMC_SUPPORT #define CONFIG_SPL_MMC_SUPPORT
#define CONFIG_SPL_FAT_SUPPORT #define CONFIG_SPL_FAT_SUPPORT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment