2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-02-03 12:59:01 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
|
|
|
* Dan Murphy <dmurphy@ti.com>
|
|
|
|
*
|
|
|
|
* Derived work from spl_usb.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <spl.h>
|
|
|
|
#include <asm/u-boot.h>
|
|
|
|
#include <sata.h>
|
2015-01-06 02:14:04 +00:00
|
|
|
#include <scsi.h>
|
2015-11-08 15:11:49 +00:00
|
|
|
#include <errno.h>
|
2014-02-03 12:59:01 +00:00
|
|
|
#include <fat.h>
|
|
|
|
#include <image.h>
|
|
|
|
|
2016-09-25 00:20:13 +00:00
|
|
|
static int spl_sata_load_image(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2014-02-03 12:59:01 +00:00
|
|
|
{
|
|
|
|
int err;
|
2016-02-29 22:25:34 +00:00
|
|
|
struct blk_desc *stor_dev;
|
2014-02-03 12:59:01 +00:00
|
|
|
|
|
|
|
err = init_sata(CONFIG_SPL_SATA_BOOT_DEVICE);
|
|
|
|
if (err) {
|
|
|
|
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
|
|
|
|
printf("spl: sata init failed: err - %d\n", err);
|
|
|
|
#endif
|
2015-11-08 15:11:49 +00:00
|
|
|
return err;
|
2014-02-03 12:59:01 +00:00
|
|
|
} else {
|
|
|
|
/* try to recognize storage devices immediately */
|
2017-06-15 03:28:41 +00:00
|
|
|
scsi_scan(false);
|
2016-05-01 17:36:16 +00:00
|
|
|
stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0);
|
2015-11-08 15:11:49 +00:00
|
|
|
if (!stor_dev)
|
|
|
|
return -ENODEV;
|
2014-02-03 12:59:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
2016-09-25 00:20:15 +00:00
|
|
|
if (spl_start_uboot() ||
|
|
|
|
spl_load_image_fat_os(spl_image, stor_dev,
|
|
|
|
CONFIG_SYS_SATA_FAT_BOOT_PARTITION))
|
2014-02-03 12:59:01 +00:00
|
|
|
#endif
|
2016-09-25 00:20:15 +00:00
|
|
|
{
|
|
|
|
err = spl_load_image_fat(spl_image, stor_dev,
|
|
|
|
CONFIG_SYS_SATA_FAT_BOOT_PARTITION,
|
2014-10-15 15:53:11 +00:00
|
|
|
CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
|
2016-09-25 00:20:15 +00:00
|
|
|
}
|
2014-02-03 12:59:01 +00:00
|
|
|
if (err) {
|
|
|
|
puts("Error loading sata device\n");
|
2015-11-08 15:11:49 +00:00
|
|
|
return err;
|
2014-02-03 12:59:01 +00:00
|
|
|
}
|
2015-11-08 15:11:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-02-03 12:59:01 +00:00
|
|
|
}
|
2016-11-30 22:30:50 +00:00
|
|
|
SPL_LOAD_IMAGE_METHOD("SATA", 0, BOOT_DEVICE_SATA, spl_sata_load_image);
|