blob: f0af9f38d19f0c216fce0f067838a7fde388db33 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dan Murphyfff40a72014-02-03 06:59:01 -06002/*
3 * (C) Copyright 2013
4 * Texas Instruments, <www.ti.com>
5 *
6 * Dan Murphy <dmurphy@ti.com>
7 *
Dan Murphyfff40a72014-02-03 06:59:01 -06008 * Derived work from spl_usb.c
9 */
10
11#include <common.h>
12#include <spl.h>
13#include <asm/u-boot.h>
14#include <sata.h>
Tom Rinifc89b2e2015-01-05 21:14:04 -050015#include <scsi.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020016#include <errno.h>
Dan Murphyfff40a72014-02-03 06:59:01 -060017#include <fat.h>
Dan Murphyfff40a72014-02-03 06:59:01 -060018#include <image.h>
19
Baruch Siacha4c61ff2019-05-16 13:03:53 +030020#ifndef CONFIG_SYS_SATA_FAT_BOOT_PARTITION
21#define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1
22#endif
23
24#ifndef CONFIG_SPL_FS_LOAD_PAYLOAD_NAME
25#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
26#endif
27
Simon Glass2a2ee2a2016-09-24 18:20:13 -060028static int spl_sata_load_image(struct spl_image_info *spl_image,
29 struct spl_boot_device *bootdev)
Dan Murphyfff40a72014-02-03 06:59:01 -060030{
Baruch Siachab2d4152019-05-16 13:03:54 +030031 int err = 0;
Simon Glass4101f682016-02-29 15:25:34 -070032 struct blk_desc *stor_dev;
Dan Murphyfff40a72014-02-03 06:59:01 -060033
Baruch Siachab2d4152019-05-16 13:03:54 +030034#if !defined(CONFIG_DM_SCSI) && !defined(CONFIG_AHCI)
Dan Murphyfff40a72014-02-03 06:59:01 -060035 err = init_sata(CONFIG_SPL_SATA_BOOT_DEVICE);
Baruch Siachab2d4152019-05-16 13:03:54 +030036#endif
Dan Murphyfff40a72014-02-03 06:59:01 -060037 if (err) {
38#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
39 printf("spl: sata init failed: err - %d\n", err);
40#endif
Nikita Kiryanov36afd452015-11-08 17:11:49 +020041 return err;
Dan Murphyfff40a72014-02-03 06:59:01 -060042 } else {
43 /* try to recognize storage devices immediately */
Simon Glass8eab1a52017-06-14 21:28:41 -060044 scsi_scan(false);
Simon Glassedd82ab2016-05-01 11:36:16 -060045 stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020046 if (!stor_dev)
47 return -ENODEV;
Dan Murphyfff40a72014-02-03 06:59:01 -060048 }
49
50#ifdef CONFIG_SPL_OS_BOOT
Simon Glass710e9ca2016-09-24 18:20:15 -060051 if (spl_start_uboot() ||
52 spl_load_image_fat_os(spl_image, stor_dev,
53 CONFIG_SYS_SATA_FAT_BOOT_PARTITION))
Dan Murphyfff40a72014-02-03 06:59:01 -060054#endif
Simon Glass710e9ca2016-09-24 18:20:15 -060055 {
Baruch Siach760ef302019-05-16 13:03:55 +030056 err = -ENOSYS;
57
58 if (IS_ENABLED(CONFIG_SPL_FS_FAT)) {
59 err = spl_load_image_fat(spl_image, stor_dev,
Simon Glass710e9ca2016-09-24 18:20:15 -060060 CONFIG_SYS_SATA_FAT_BOOT_PARTITION,
Baruch Siach760ef302019-05-16 13:03:55 +030061 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
62 }
Simon Glass710e9ca2016-09-24 18:20:15 -060063 }
Dan Murphyfff40a72014-02-03 06:59:01 -060064 if (err) {
65 puts("Error loading sata device\n");
Nikita Kiryanov36afd452015-11-08 17:11:49 +020066 return err;
Dan Murphyfff40a72014-02-03 06:59:01 -060067 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +020068
69 return 0;
Dan Murphyfff40a72014-02-03 06:59:01 -060070}
Simon Glassebc4ef62016-11-30 15:30:50 -070071SPL_LOAD_IMAGE_METHOD("SATA", 0, BOOT_DEVICE_SATA, spl_sata_load_image);