Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 1 | /* |
| 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 Rini | fc89b2e | 2015-01-05 21:14:04 -0500 | [diff] [blame] | 16 | #include <scsi.h> |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 17 | #include <errno.h> |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 18 | #include <fat.h> |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 19 | #include <image.h> |
| 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 23 | int spl_sata_load_image(void) |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -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 | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 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 |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 33 | return err; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 34 | } else { |
| 35 | /* try to recognize storage devices immediately */ |
Roger Quadros | 76300c0 | 2014-09-23 18:07:04 +0300 | [diff] [blame] | 36 | scsi_scan(0); |
Simon Glass | edd82ab | 2016-05-01 11:36:16 -0600 | [diff] [blame^] | 37 | stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 38 | if (!stor_dev) |
| 39 | return -ENODEV; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 40 | } |
| 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 GARDET | 205b4f3 | 2014-10-15 17:53:11 +0200 | [diff] [blame] | 48 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME); |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 49 | if (err) { |
| 50 | puts("Error loading sata device\n"); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 51 | return err; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 52 | } |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 53 | |
| 54 | return 0; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 55 | } |