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
14 #include <asm/u-boot.h>
19 static int usb_stor_curr_dev = -1; /* current device */
21 int spl_usb_load(struct spl_image_info *spl_image,
22 struct spl_boot_device *bootdev, int partition,
26 struct blk_desc *stor_dev;
27 static bool usb_init_pending = true;
29 if (usb_init_pending) {
32 usb_init_pending = false;
36 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
37 printf("%s: usb init failed: err - %d\n", __func__, err);
42 /* try to recognize storage devices immediately */
43 usb_stor_curr_dev = usb_stor_scan(1);
44 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev);
48 debug("boot mode - FAT\n");
50 #if CONFIG_IS_ENABLED(OS_BOOT)
51 if (spl_start_uboot() ||
52 spl_load_image_fat_os(spl_image, bootdev, stor_dev, partition))
55 err = spl_load_image_fat(spl_image, bootdev, stor_dev, partition, filename);
59 puts("Error loading from USB device\n");
66 static int spl_usb_load_image(struct spl_image_info *spl_image,
67 struct spl_boot_device *bootdev)
69 return spl_usb_load(spl_image, bootdev,
70 CONFIG_SYS_USB_FAT_BOOT_PARTITION,
71 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
73 SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image);