blob: e29d579b0d43ff77c0eba8bd4987cd5a69a928de [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>
12#include <spl.h>
13#include <asm/u-boot.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020014#include <errno.h>
Dan Murphy8cffe5b2014-01-16 11:23:30 -060015#include <usb.h>
16#include <fat.h>
17
Dan Murphy8cffe5b2014-01-16 11:23:30 -060018static int usb_stor_curr_dev = -1; /* current device */
Dan Murphy8cffe5b2014-01-16 11:23:30 -060019
Simon Glass2a2ee2a2016-09-24 18:20:13 -060020static int spl_usb_load_image(struct spl_image_info *spl_image,
21 struct spl_boot_device *bootdev)
Dan Murphy8cffe5b2014-01-16 11:23:30 -060022{
23 int err;
Simon Glass4101f682016-02-29 15:25:34 -070024 struct blk_desc *stor_dev;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060025
26 usb_stop();
27 err = usb_init();
28 if (err) {
29#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
30 printf("%s: usb init failed: err - %d\n", __func__, err);
31#endif
Nikita Kiryanov36afd452015-11-08 17:11:49 +020032 return err;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060033 }
34
Dan Murphy8cffe5b2014-01-16 11:23:30 -060035 /* try to recognize storage devices immediately */
36 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass57ebf672016-05-01 11:36:13 -060037 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020038 if (!stor_dev)
39 return -ENODEV;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060040
41 debug("boot mode - FAT\n");
42
43#ifdef CONFIG_SPL_OS_BOOT
Simon Glass710e9ca2016-09-24 18:20:15 -060044 if (spl_start_uboot() ||
45 spl_load_image_fat_os(spl_image, stor_dev,
46 CONFIG_SYS_USB_FAT_BOOT_PARTITION))
Dan Murphy8cffe5b2014-01-16 11:23:30 -060047#endif
Simon Glass710e9ca2016-09-24 18:20:15 -060048 {
49 err = spl_load_image_fat(spl_image, stor_dev,
50 CONFIG_SYS_USB_FAT_BOOT_PARTITION,
51 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
52 }
Dan Murphy8cffe5b2014-01-16 11:23:30 -060053
Nikita Kiryanov36afd452015-11-08 17:11:49 +020054 if (err) {
55 puts("Error loading from USB device\n");
56 return err;
57 }
58
59 return 0;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060060}
Simon Glassebc4ef62016-11-30 15:30:50 -070061SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image);