Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 |
| 4 | * Texas Instruments, <www.ti.com> |
| 5 | * |
| 6 | * Dan Murphy <dmurphy@ti.com> |
| 7 | * |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 8 | * Derived work from spl_mmc.c |
| 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <spl.h> |
| 13 | #include <asm/u-boot.h> |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 14 | #include <errno.h> |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 15 | #include <usb.h> |
| 16 | #include <fat.h> |
| 17 | |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 18 | #ifdef CONFIG_USB_STORAGE |
| 19 | static int usb_stor_curr_dev = -1; /* current device */ |
| 20 | #endif |
| 21 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 22 | static int spl_usb_load_image(struct spl_image_info *spl_image, |
| 23 | struct spl_boot_device *bootdev) |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 24 | { |
| 25 | int err; |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 26 | struct blk_desc *stor_dev; |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 27 | |
| 28 | usb_stop(); |
| 29 | err = usb_init(); |
| 30 | if (err) { |
| 31 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 32 | printf("%s: usb init failed: err - %d\n", __func__, err); |
| 33 | #endif |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 34 | return err; |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | #ifdef CONFIG_USB_STORAGE |
| 38 | /* try to recognize storage devices immediately */ |
| 39 | usb_stor_curr_dev = usb_stor_scan(1); |
Simon Glass | 57ebf67 | 2016-05-01 11:36:13 -0600 | [diff] [blame] | 40 | stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 41 | if (!stor_dev) |
| 42 | return -ENODEV; |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 43 | #endif |
| 44 | |
| 45 | debug("boot mode - FAT\n"); |
| 46 | |
| 47 | #ifdef CONFIG_SPL_OS_BOOT |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 48 | if (spl_start_uboot() || |
| 49 | spl_load_image_fat_os(spl_image, stor_dev, |
| 50 | CONFIG_SYS_USB_FAT_BOOT_PARTITION)) |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 51 | #endif |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 52 | { |
| 53 | err = spl_load_image_fat(spl_image, stor_dev, |
| 54 | CONFIG_SYS_USB_FAT_BOOT_PARTITION, |
| 55 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME); |
| 56 | } |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 57 | |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 58 | if (err) { |
| 59 | puts("Error loading from USB device\n"); |
| 60 | return err; |
| 61 | } |
| 62 | |
| 63 | return 0; |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 64 | } |
Simon Glass | ebc4ef6 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 65 | SPL_LOAD_IMAGE_METHOD("USB", 0, BOOT_DEVICE_USB, spl_usb_load_image); |