blob: 1a21c051a10b38c8f08e53142f464cd26c610b36 [file] [log] [blame]
Dan Murphyfff40a72014-02-03 06:59:01 -06001/*
2 * (C) Copyright 2013
3 * Texas Instruments, <www.ti.com>
4 *
5 * Dan Murphy <dmurphy@ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 *
9 * Derived work from spl_usb.c
10 */
11
12#include <common.h>
13#include <spl.h>
14#include <asm/u-boot.h>
15#include <sata.h>
Tom Rinifc89b2e2015-01-05 21:14:04 -050016#include <scsi.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020017#include <errno.h>
Dan Murphyfff40a72014-02-03 06:59:01 -060018#include <fat.h>
Dan Murphyfff40a72014-02-03 06:59:01 -060019#include <image.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
Simon Glass75571472016-09-24 18:20:07 -060023static int spl_sata_load_image(struct spl_boot_device *bootdev)
Dan Murphyfff40a72014-02-03 06:59:01 -060024{
25 int err;
Simon Glass4101f682016-02-29 15:25:34 -070026 struct blk_desc *stor_dev;
Dan Murphyfff40a72014-02-03 06:59:01 -060027
28 err = init_sata(CONFIG_SPL_SATA_BOOT_DEVICE);
29 if (err) {
30#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
31 printf("spl: sata init failed: err - %d\n", err);
32#endif
Nikita Kiryanov36afd452015-11-08 17:11:49 +020033 return err;
Dan Murphyfff40a72014-02-03 06:59:01 -060034 } else {
35 /* try to recognize storage devices immediately */
Roger Quadros76300c02014-09-23 18:07:04 +030036 scsi_scan(0);
Simon Glassedd82ab2016-05-01 11:36:16 -060037 stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020038 if (!stor_dev)
39 return -ENODEV;
Dan Murphyfff40a72014-02-03 06:59:01 -060040 }
41
42#ifdef CONFIG_SPL_OS_BOOT
43 if (spl_start_uboot() || spl_load_image_fat_os(stor_dev,
44 CONFIG_SYS_SATA_FAT_BOOT_PARTITION))
45#endif
46 err = spl_load_image_fat(stor_dev,
47 CONFIG_SYS_SATA_FAT_BOOT_PARTITION,
Guillaume GARDET205b4f32014-10-15 17:53:11 +020048 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
Dan Murphyfff40a72014-02-03 06:59:01 -060049 if (err) {
50 puts("Error loading sata device\n");
Nikita Kiryanov36afd452015-11-08 17:11:49 +020051 return err;
Dan Murphyfff40a72014-02-03 06:59:01 -060052 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +020053
54 return 0;
Dan Murphyfff40a72014-02-03 06:59:01 -060055}
Simon Glass75571472016-09-24 18:20:07 -060056SPL_LOAD_IMAGE_METHOD(0, BOOT_DEVICE_SATA, spl_sata_load_image);