blob: 08837b38fc9a81f287bdff9bb608a95ebc9e2335 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dan Murphy8cffe5b2014-01-16 11:23:30 -06002/*
3 * (C) Copyright 2014
4 * Texas Instruments, <www.ti.com>
5 *
6 * Dan Murphy <dmurphy@ti.com>
7 *
Dan Murphy8cffe5b2014-01-16 11:23:30 -06008 * Derived work from spl_mmc.c
9 */
10
11#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Dan Murphy8cffe5b2014-01-16 11:23:30 -060013#include <spl.h>
14#include <asm/u-boot.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020015#include <errno.h>
Dan Murphy8cffe5b2014-01-16 11:23:30 -060016#include <usb.h>
17#include <fat.h>
18
Dan Murphy8cffe5b2014-01-16 11:23:30 -060019static int usb_stor_curr_dev = -1; /* current device */
Dan Murphy8cffe5b2014-01-16 11:23:30 -060020
Simon Glass2a2ee2a2016-09-24 18:20:13 -060021static int spl_usb_load_image(struct spl_image_info *spl_image,
22 struct spl_boot_device *bootdev)
Dan Murphy8cffe5b2014-01-16 11:23:30 -060023{
24 int err;
Simon Glass4101f682016-02-29 15:25:34 -070025 struct blk_desc *stor_dev;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060026
27 usb_stop();
28 err = usb_init();
29 if (err) {
30#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
31 printf("%s: usb init failed: err - %d\n", __func__, err);
32#endif
Nikita Kiryanov36afd452015-11-08 17:11:49 +020033 return err;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060034 }
35
Dan Murphy8cffe5b2014-01-16 11:23:30 -060036 /* try to recognize storage devices immediately */
37 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass57ebf672016-05-01 11:36:13 -060038 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020039 if (!stor_dev)
40 return -ENODEV;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060041
42 debug("boot mode - FAT\n");
43
44#ifdef CONFIG_SPL_OS_BOOT
Simon Glass710e9ca2016-09-24 18:20:15 -060045 if (spl_start_uboot() ||
46 spl_load_image_fat_os(spl_image, stor_dev,
47 CONFIG_SYS_USB_FAT_BOOT_PARTITION))
Dan Murphy8cffe5b2014-01-16 11:23:30 -060048#endif
Simon Glass710e9ca2016-09-24 18:20:15 -060049 {
50 err = spl_load_image_fat(spl_image, stor_dev,
51 CONFIG_SYS_USB_FAT_BOOT_PARTITION,
52 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
53 }
Dan Murphy8cffe5b2014-01-16 11:23:30 -060054
Nikita Kiryanov36afd452015-11-08 17:11:49 +020055 if (err) {
56 puts("Error loading from USB device\n");
57 return err;
58 }
59
60 return 0;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060061}
Simon Glassebc4ef62016-11-30 15:30:50 -070062SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image);