1 // SPDX-License-Identifier: GPL-2.0+
4 * Texas Instruments, <www.ti.com>
6 * Dan Murphy <dmurphy@ti.com>
8 * Derived work from spl_usb.c
13 #include <asm/u-boot.h>
20 #ifndef CONFIG_SYS_SATA_FAT_BOOT_PARTITION
21 #define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1
24 #ifndef CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR
25 /* Dummy value to make the compiler happy */
26 #define CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR 0x100
29 static int spl_sata_load_image_raw(struct spl_image_info *spl_image,
30 struct spl_boot_device *bootdev,
31 struct blk_desc *stor_dev, unsigned long sector)
33 struct image_header *header;
35 u32 image_size_sectors;
36 u32 image_offset_sectors;
40 header = spl_get_load_buffer(-sizeof(*header), stor_dev->blksz);
41 count = blk_dread(stor_dev, sector, 1, header);
45 ret = spl_parse_image_header(spl_image, bootdev, header);
49 image_size_sectors = DIV_ROUND_UP(spl_image->size, stor_dev->blksz);
50 image_offset_sectors = spl_image->offset / stor_dev->blksz;
51 image_offset = spl_image->offset % stor_dev->blksz;
52 count = blk_dread(stor_dev, sector + image_offset_sectors,
54 (void *)spl_image->load_addr);
55 if (count != image_size_sectors)
59 memmove((void *)spl_image->load_addr,
60 (void *)spl_image->load_addr + image_offset,
66 static int spl_sata_load_image(struct spl_image_info *spl_image,
67 struct spl_boot_device *bootdev)
70 struct blk_desc *stor_dev;
72 /* try to recognize storage devices immediately */
74 stor_dev = blk_get_devnum_by_type(IF_TYPE_SCSI, 0);
78 #if CONFIG_IS_ENABLED(OS_BOOT)
79 if (spl_start_uboot() ||
80 spl_load_image_fat_os(spl_image, bootdev, stor_dev,
81 CONFIG_SYS_SATA_FAT_BOOT_PARTITION))
86 if (IS_ENABLED(CONFIG_SPL_FS_FAT)) {
87 err = spl_load_image_fat(spl_image, bootdev, stor_dev,
88 CONFIG_SYS_SATA_FAT_BOOT_PARTITION,
89 CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
90 } else if (IS_ENABLED(CONFIG_SPL_SATA_RAW_U_BOOT_USE_SECTOR)) {
91 err = spl_sata_load_image_raw(spl_image, bootdev, stor_dev,
92 CONFIG_SPL_SATA_RAW_U_BOOT_SECTOR);
96 puts("Error loading sata device\n");
102 SPL_LOAD_IMAGE_METHOD("SATA", 0, BOOT_DEVICE_SATA, spl_sata_load_image);