blob: 479e2dc1826ecab55946c92293be5ed41dfc246b [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
Faiz Abbasc3ab97c2020-08-03 11:35:04 +053021int spl_usb_load(struct spl_image_info *spl_image,
22 struct spl_boot_device *bootdev, int partition,
23 const char *filename)
Dan Murphy8cffe5b2014-01-16 11:23:30 -060024{
Faiz Abbas39388ae2020-08-03 11:35:05 +053025 int err = 0;
Simon Glass4101f682016-02-29 15:25:34 -070026 struct blk_desc *stor_dev;
Faiz Abbas39388ae2020-08-03 11:35:05 +053027 static bool usb_init_pending = true;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060028
Faiz Abbas39388ae2020-08-03 11:35:05 +053029 if (usb_init_pending) {
30 usb_stop();
31 err = usb_init();
32 usb_init_pending = false;
33 }
34
Dan Murphy8cffe5b2014-01-16 11:23:30 -060035 if (err) {
36#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
37 printf("%s: usb init failed: err - %d\n", __func__, err);
38#endif
Nikita Kiryanov36afd452015-11-08 17:11:49 +020039 return err;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060040 }
41
Dan Murphy8cffe5b2014-01-16 11:23:30 -060042 /* try to recognize storage devices immediately */
43 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass8149b152022-09-17 09:00:09 -060044 stor_dev = blk_get_devnum_by_uclass_id(UCLASS_USB, usb_stor_curr_dev);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020045 if (!stor_dev)
46 return -ENODEV;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060047
48 debug("boot mode - FAT\n");
49
Tom Rini71150072021-10-30 23:03:48 -040050#if CONFIG_IS_ENABLED(OS_BOOT)
Simon Glass710e9ca2016-09-24 18:20:15 -060051 if (spl_start_uboot() ||
Pali Rohár2e0429b2022-01-14 14:31:38 +010052 spl_load_image_fat_os(spl_image, bootdev, stor_dev, partition))
Dan Murphy8cffe5b2014-01-16 11:23:30 -060053#endif
Simon Glass710e9ca2016-09-24 18:20:15 -060054 {
Pali Rohár2e0429b2022-01-14 14:31:38 +010055 err = spl_load_image_fat(spl_image, bootdev, stor_dev, partition, filename);
Simon Glass710e9ca2016-09-24 18:20:15 -060056 }
Dan Murphy8cffe5b2014-01-16 11:23:30 -060057
Nikita Kiryanov36afd452015-11-08 17:11:49 +020058 if (err) {
59 puts("Error loading from USB device\n");
60 return err;
61 }
62
63 return 0;
Dan Murphy8cffe5b2014-01-16 11:23:30 -060064}
Faiz Abbasc3ab97c2020-08-03 11:35:04 +053065
66static int spl_usb_load_image(struct spl_image_info *spl_image,
67 struct spl_boot_device *bootdev)
68{
69 return spl_usb_load(spl_image, bootdev,
70 CONFIG_SYS_USB_FAT_BOOT_PARTITION,
71 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
72}
Simon Glassebc4ef62016-11-30 15:30:50 -070073SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image);