1 // SPDX-License-Identifier: GPL-2.0+
4 * Texas Instruments, <www.ti.com>
8 * FAT Image Functions copied from spl_mmc.c
18 #include <linux/libfdt.h>
20 static int fat_registered;
22 void spl_fat_force_reregister(void)
27 static int spl_register_fat_device(struct blk_desc *block_dev, int partition)
34 err = fat_register_device(block_dev, partition);
36 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
37 printf("%s: fat register err - %d\n", __func__, err);
47 static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset,
48 ulong size, void *buf)
52 char *filename = load->priv;
54 ret = fat_read_file(filename, buf, file_offset, size, &actread);
61 int spl_load_image_fat(struct spl_image_info *spl_image,
62 struct spl_boot_device *bootdev,
63 struct blk_desc *block_dev, int partition,
68 struct spl_load_info load;
70 err = spl_register_fat_device(block_dev, partition);
75 * Avoid pulling in this function for other image types since we are
76 * very short on space on some boards.
78 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT_FULL)) {
79 err = fat_size(filename, &size);
86 load.read = spl_fit_read;
87 if (IS_ENABLED(CONFIG_SPL_FS_FAT_DMA_ALIGN))
88 spl_set_bl_len(&load, ARCH_DMA_MINALIGN);
90 spl_set_bl_len(&load, 1);
91 load.priv = (void *)filename;
92 err = spl_load(spl_image, bootdev, &load, size, 0);
95 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
97 printf("%s: error reading image %s, err - %d\n",
98 __func__, filename, err);
104 #if CONFIG_IS_ENABLED(OS_BOOT)
105 int spl_load_image_fat_os(struct spl_image_info *spl_image,
106 struct spl_boot_device *bootdev,
107 struct blk_desc *block_dev, int partition)
110 __maybe_unused char *file;
112 err = spl_register_fat_device(block_dev, partition);
116 #if defined(CONFIG_SPL_ENV_SUPPORT) && defined(CONFIG_SPL_OS_BOOT)
117 file = env_get("falcon_args_file");
119 err = file_fat_read(file, (void *)CONFIG_SPL_PAYLOAD_ARGS_ADDR, 0);
121 printf("spl: error reading image %s, err - %d, falling back to default\n",
125 file = env_get("falcon_image_file");
127 err = spl_load_image_fat(spl_image, bootdev, block_dev,
130 puts("spl: falling back to default\n");
136 puts("spl: falcon_image_file not set in environment, falling back to default\n");
138 puts("spl: falcon_args_file not set in environment, falling back to default\n");
143 err = file_fat_read(CONFIG_SPL_FS_LOAD_ARGS_NAME,
144 (void *)CONFIG_SPL_PAYLOAD_ARGS_ADDR, 0);
146 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
147 printf("%s: error reading image %s, err - %d\n",
148 __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err);
153 return spl_load_image_fat(spl_image, bootdev, block_dev, partition,
154 CONFIG_SPL_FS_LOAD_KERNEL_NAME);
157 int spl_load_image_fat_os(struct spl_image_info *spl_image,
158 struct spl_boot_device *bootdev,
159 struct blk_desc *block_dev, int partition)