blob: d9eb2d6687b3fb8e4bcc66ad3d139e772a29721e [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>
Dan Murphyfff40a72014-02-03 06:59:01 -060017#include <fat.h>
18#include <version.h>
19#include <image.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
23void spl_sata_load_image(void)
24{
25 int err;
26 block_dev_desc_t *stor_dev;
27
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
33 hang();
34 } else {
35 /* try to recognize storage devices immediately */
Roger Quadros76300c02014-09-23 18:07:04 +030036 scsi_scan(0);
Dan Murphyfff40a72014-02-03 06:59:01 -060037 stor_dev = scsi_get_dev(0);
38 }
39
40#ifdef CONFIG_SPL_OS_BOOT
41 if (spl_start_uboot() || spl_load_image_fat_os(stor_dev,
42 CONFIG_SYS_SATA_FAT_BOOT_PARTITION))
43#endif
44 err = spl_load_image_fat(stor_dev,
45 CONFIG_SYS_SATA_FAT_BOOT_PARTITION,
Guillaume GARDET205b4f32014-10-15 17:53:11 +020046 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
Dan Murphyfff40a72014-02-03 06:59:01 -060047 if (err) {
48 puts("Error loading sata device\n");
49 hang();
50 }
51}