2 * SPDX-License-Identifier: GPL-2.0+
7 #include <asm/u-boot.h>
12 int spl_load_image_ext(struct spl_image_info *spl_image,
13 struct blk_desc *block_dev, int partition,
17 struct image_header *header;
18 loff_t filelen, actlen;
19 disk_partition_t part_info = {};
21 header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
22 sizeof(struct image_header));
24 if (part_get_info(block_dev, partition, &part_info)) {
25 printf("spl: no partition table found\n");
29 ext4fs_set_blk_dev(block_dev, &part_info);
31 err = ext4fs_mount(0);
33 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
34 printf("%s: ext4fs mount err - %d\n", __func__, err);
39 err = ext4fs_open(filename, &filelen);
41 puts("spl: ext4fs_open failed\n");
44 err = ext4fs_read((char *)header, 0, sizeof(struct image_header), &actlen);
46 puts("spl: ext4fs_read failed\n");
50 err = spl_parse_image_header(spl_image, header);
52 puts("spl: ext: failed to parse image header\n");
56 err = ext4fs_read((char *)spl_image->load_addr, 0, filelen, &actlen);
59 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
61 printf("%s: error reading image %s, err - %d\n",
62 __func__, filename, err);
68 #ifdef CONFIG_SPL_OS_BOOT
69 int spl_load_image_ext_os(struct spl_image_info *spl_image,
70 struct blk_desc *block_dev, int partition)
73 __maybe_unused loff_t filelen, actlen;
74 disk_partition_t part_info = {};
75 __maybe_unused char *file;
77 if (part_get_info(block_dev, partition, &part_info)) {
78 printf("spl: no partition table found\n");
82 ext4fs_set_blk_dev(block_dev, &part_info);
84 err = ext4fs_mount(0);
86 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
87 printf("%s: ext4fs mount err - %d\n", __func__, err);
91 #if defined(CONFIG_SPL_ENV_SUPPORT)
92 file = env_get("falcon_args_file");
94 err = ext4fs_open(file, &filelen);
96 puts("spl: ext4fs_open failed\n");
99 err = ext4fs_read((void *)CONFIG_SYS_SPL_ARGS_ADDR, 0, filelen, &actlen);
101 printf("spl: error reading image %s, err - %d, falling back to default\n",
105 file = env_get("falcon_image_file");
107 err = spl_load_image_ext(spl_image, block_dev,
110 puts("spl: falling back to default\n");
116 puts("spl: falcon_image_file not set in environment, falling back to default\n");
119 puts("spl: falcon_args_file not set in environment, falling back to default\n");
125 err = ext4fs_open(CONFIG_SPL_FS_LOAD_ARGS_NAME, &filelen);
127 puts("spl: ext4fs_open failed\n");
129 err = ext4fs_read((void *)CONFIG_SYS_SPL_ARGS_ADDR, 0, filelen, &actlen);
131 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
132 printf("%s: error reading image %s, err - %d\n",
133 __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err);
138 return spl_load_image_ext(spl_image, block_dev, partition,
139 CONFIG_SPL_FS_LOAD_KERNEL_NAME);
142 int spl_load_image_ext_os(struct spl_image_info *spl_image,
143 struct blk_desc *block_dev, int partition)