Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2013 |
| 4 | * Texas Instruments, <www.ti.com> |
| 5 | * |
| 6 | * Dan Murphy <dmurphy@ti.com> |
| 7 | * |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 8 | * 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 Rini | fc89b2e | 2015-01-05 21:14:04 -0500 | [diff] [blame] | 15 | #include <scsi.h> |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 16 | #include <errno.h> |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 17 | #include <fat.h> |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 18 | #include <image.h> |
| 19 | |
Baruch Siach | a4c61ff | 2019-05-16 13:03:53 +0300 | [diff] [blame] | 20 | #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 | |
Baruch Siach | 60ca969 | 2019-07-14 17:54:21 +0300 | [diff] [blame] | 28 | #ifndef CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR |
| 29 | /* Dummy value to make the compiler happy */ |
| 30 | #define CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR 0x100 |
| 31 | #endif |
| 32 | |
| 33 | static int spl_sata_load_image_raw(struct spl_image_info *spl_image, |
| 34 | struct blk_desc *stor_dev, unsigned long sector) |
| 35 | { |
| 36 | struct image_header *header; |
| 37 | unsigned long count; |
| 38 | u32 image_size_sectors; |
| 39 | int ret; |
| 40 | |
| 41 | header = spl_get_load_buffer(-sizeof(*header), stor_dev->blksz); |
| 42 | count = blk_dread(stor_dev, sector, 1, header); |
| 43 | if (count == 0) |
| 44 | return -EIO; |
| 45 | |
| 46 | ret = spl_parse_image_header(spl_image, header); |
| 47 | if (ret) |
| 48 | return ret; |
| 49 | |
| 50 | image_size_sectors = DIV_ROUND_UP(spl_image->size, stor_dev->blksz); |
| 51 | count = blk_dread(stor_dev, sector, image_size_sectors, |
| 52 | (void *)spl_image->load_addr); |
| 53 | if (count != image_size_sectors) |
| 54 | return -EIO; |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 59 | static int spl_sata_load_image(struct spl_image_info *spl_image, |
| 60 | struct spl_boot_device *bootdev) |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 61 | { |
Baruch Siach | ab2d415 | 2019-05-16 13:03:54 +0300 | [diff] [blame] | 62 | int err = 0; |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 63 | struct blk_desc *stor_dev; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 64 | |
Baruch Siach | ab2d415 | 2019-05-16 13:03:54 +0300 | [diff] [blame] | 65 | #if !defined(CONFIG_DM_SCSI) && !defined(CONFIG_AHCI) |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 66 | err = init_sata(CONFIG_SPL_SATA_BOOT_DEVICE); |
Baruch Siach | ab2d415 | 2019-05-16 13:03:54 +0300 | [diff] [blame] | 67 | #endif |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 68 | if (err) { |
| 69 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 70 | printf("spl: sata init failed: err - %d\n", err); |
| 71 | #endif |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 72 | return err; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 73 | } else { |
| 74 | /* try to recognize storage devices immediately */ |
Simon Glass | 8eab1a5 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 75 | scsi_scan(false); |
Simon Glass | edd82ab | 2016-05-01 11:36:16 -0600 | [diff] [blame] | 76 | stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 77 | if (!stor_dev) |
| 78 | return -ENODEV; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | #ifdef CONFIG_SPL_OS_BOOT |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 82 | if (spl_start_uboot() || |
| 83 | spl_load_image_fat_os(spl_image, stor_dev, |
| 84 | CONFIG_SYS_SATA_FAT_BOOT_PARTITION)) |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 85 | #endif |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 86 | { |
Baruch Siach | 760ef30 | 2019-05-16 13:03:55 +0300 | [diff] [blame] | 87 | err = -ENOSYS; |
| 88 | |
| 89 | if (IS_ENABLED(CONFIG_SPL_FS_FAT)) { |
| 90 | err = spl_load_image_fat(spl_image, stor_dev, |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 91 | CONFIG_SYS_SATA_FAT_BOOT_PARTITION, |
Baruch Siach | 760ef30 | 2019-05-16 13:03:55 +0300 | [diff] [blame] | 92 | CONFIG_SPL_FS_LOAD_PAYLOAD_NAME); |
Baruch Siach | 60ca969 | 2019-07-14 17:54:21 +0300 | [diff] [blame] | 93 | } else if (IS_ENABLED(CONFIG_SPL_SATA_RAW_U_BOOT_USE_SECTOR)) { |
| 94 | err = spl_sata_load_image_raw(spl_image, stor_dev, |
| 95 | CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR); |
Baruch Siach | 760ef30 | 2019-05-16 13:03:55 +0300 | [diff] [blame] | 96 | } |
Simon Glass | 710e9ca | 2016-09-24 18:20:15 -0600 | [diff] [blame] | 97 | } |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 98 | if (err) { |
| 99 | puts("Error loading sata device\n"); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 100 | return err; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 101 | } |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 102 | |
| 103 | return 0; |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 104 | } |
Simon Glass | ebc4ef6 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 105 | SPL_LOAD_IMAGE_METHOD("SATA", 0, BOOT_DEVICE_SATA, spl_sata_load_image); |