1 // SPDX-License-Identifier: GPL-2.0+
4 * Texas Instruments, <www.ti.com>
6 * Dan Murphy <dmurphy@ti.com>
8 * Derived work from spl_mmc.c
13 #include <asm/u-boot.h>
18 static int usb_stor_curr_dev = -1; /* current device */
20 static int spl_usb_load_image(struct spl_image_info *spl_image,
21 struct spl_boot_device *bootdev)
24 struct blk_desc *stor_dev;
29 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
30 printf("%s: usb init failed: err - %d\n", __func__, err);
35 /* try to recognize storage devices immediately */
36 usb_stor_curr_dev = usb_stor_scan(1);
37 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev);
41 debug("boot mode - FAT\n");
43 #ifdef CONFIG_SPL_OS_BOOT
44 if (spl_start_uboot() ||
45 spl_load_image_fat_os(spl_image, stor_dev,
46 CONFIG_SYS_USB_FAT_BOOT_PARTITION))
49 err = spl_load_image_fat(spl_image, stor_dev,
50 CONFIG_SYS_USB_FAT_BOOT_PARTITION,
51 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
55 puts("Error loading from USB device\n");
61 SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image);