blob: 76f49a5a8a6acbddbfcd96f139fd521a03921a05 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Guillaume GARDET1eb410c2014-10-15 17:53:12 +02002
Simon Glass0af6e2d2019-08-01 09:46:52 -06003#include <env.h>
Simon Glass655306c2020-05-10 11:39:58 -06004#include <part.h>
Guillaume GARDET1eb410c2014-10-15 17:53:12 +02005#include <spl.h>
Sean Andersonf727cc12023-11-08 11:48:48 -05006#include <spl_load.h>
Guillaume GARDET1eb410c2014-10-15 17:53:12 +02007#include <ext4fs.h>
Nikita Kiryanovcc49f552015-11-08 17:11:45 +02008#include <errno.h>
Guillaume GARDET1eb410c2014-10-15 17:53:12 +02009#include <image.h>
10
Sean Andersonf727cc12023-11-08 11:48:48 -050011static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset,
12 ulong size, void *buf)
13{
14 int ret;
15 loff_t actlen;
16
17 ret = ext4fs_read(buf, file_offset, size, &actlen);
18 if (ret)
19 return ret;
20 return actlen;
21}
22
Simon Glass0649e912016-09-24 18:20:14 -060023int spl_load_image_ext(struct spl_image_info *spl_image,
Pali Rohárdda8f882022-01-14 14:31:38 +010024 struct spl_boot_device *bootdev,
Simon Glass0649e912016-09-24 18:20:14 -060025 struct blk_desc *block_dev, int partition,
26 const char *filename)
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020027{
28 s32 err;
Sean Andersonf727cc12023-11-08 11:48:48 -050029 loff_t filelen;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060030 struct disk_partition part_info = {};
Sean Andersonf727cc12023-11-08 11:48:48 -050031 struct spl_load_info load;
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020032
Simon Glassb89a8442016-02-29 15:25:48 -070033 if (part_get_info(block_dev, partition, &part_info)) {
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020034 printf("spl: no partition table found\n");
35 return -1;
36 }
37
38 ext4fs_set_blk_dev(block_dev, &part_info);
39
Sean Andersonab125f52023-11-08 12:51:09 -050040 err = ext4fs_mount();
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020041 if (!err) {
42#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
43 printf("%s: ext4fs mount err - %d\n", __func__, err);
44#endif
Thomas Schaefer37aea852020-06-16 22:03:52 +020045 return -1;
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020046 }
47
Suriyan Ramasamib3a2d5a2014-11-17 14:39:36 -080048 err = ext4fs_open(filename, &filelen);
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020049 if (err < 0) {
50 puts("spl: ext4fs_open failed\n");
51 goto end;
52 }
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020053
Sean Andersonf727cc12023-11-08 11:48:48 -050054 spl_set_bl_len(&load, 1);
55 load.read = spl_fit_read;
56 err = spl_load(spl_image, bootdev, &load, filelen, 0);
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020057
58end:
59#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
Guillaume GARDET8a3aeaf2014-11-25 15:34:16 +010060 if (err < 0)
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020061 printf("%s: error reading image %s, err - %d\n",
62 __func__, filename, err);
63#endif
64
Guillaume GARDET8a3aeaf2014-11-25 15:34:16 +010065 return err < 0;
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020066}
67
Tom Rinic2e78882021-10-30 23:03:48 -040068#if CONFIG_IS_ENABLED(OS_BOOT)
Simon Glass0649e912016-09-24 18:20:14 -060069int spl_load_image_ext_os(struct spl_image_info *spl_image,
Pali Rohárdda8f882022-01-14 14:31:38 +010070 struct spl_boot_device *bootdev,
Simon Glass0649e912016-09-24 18:20:14 -060071 struct blk_desc *block_dev, int partition)
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020072{
73 int err;
Suriyan Ramasamib3a2d5a2014-11-17 14:39:36 -080074 __maybe_unused loff_t filelen, actlen;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060075 struct disk_partition part_info = {};
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020076 __maybe_unused char *file;
77
Simon Glassb89a8442016-02-29 15:25:48 -070078 if (part_get_info(block_dev, partition, &part_info)) {
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020079 printf("spl: no partition table found\n");
80 return -1;
81 }
82
83 ext4fs_set_blk_dev(block_dev, &part_info);
84
Sean Andersonab125f52023-11-08 12:51:09 -050085 err = ext4fs_mount();
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020086 if (!err) {
87#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
88 printf("%s: ext4fs mount err - %d\n", __func__, err);
89#endif
90 return -1;
91 }
Petr Kulhavyecb23642016-06-14 12:06:36 +020092#if defined(CONFIG_SPL_ENV_SUPPORT)
Simon Glass64b723f2017-08-03 12:22:12 -060093 file = env_get("falcon_args_file");
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020094 if (file) {
Suriyan Ramasamib3a2d5a2014-11-17 14:39:36 -080095 err = ext4fs_open(file, &filelen);
Guillaume GARDET1eb410c2014-10-15 17:53:12 +020096 if (err < 0) {
97 puts("spl: ext4fs_open failed\n");
98 goto defaults;
99 }
Simon Glass259cdb42023-09-26 08:14:17 -0600100 err = ext4fs_read((void *)CONFIG_SPL_PAYLOAD_ARGS_ADDR, 0, filelen, &actlen);
Guillaume GARDET8a3aeaf2014-11-25 15:34:16 +0100101 if (err < 0) {
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200102 printf("spl: error reading image %s, err - %d, falling back to default\n",
103 file, err);
104 goto defaults;
105 }
Simon Glass64b723f2017-08-03 12:22:12 -0600106 file = env_get("falcon_image_file");
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200107 if (file) {
Pali Rohárdda8f882022-01-14 14:31:38 +0100108 err = spl_load_image_ext(spl_image, bootdev, block_dev,
Simon Glass0649e912016-09-24 18:20:14 -0600109 partition, file);
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200110 if (err != 0) {
111 puts("spl: falling back to default\n");
112 goto defaults;
113 }
114
115 return 0;
116 } else {
117 puts("spl: falcon_image_file not set in environment, falling back to default\n");
118 }
119 } else {
120 puts("spl: falcon_args_file not set in environment, falling back to default\n");
121 }
122
123defaults:
124#endif
125
Suriyan Ramasamib3a2d5a2014-11-17 14:39:36 -0800126 err = ext4fs_open(CONFIG_SPL_FS_LOAD_ARGS_NAME, &filelen);
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200127 if (err < 0)
128 puts("spl: ext4fs_open failed\n");
129
Simon Glass259cdb42023-09-26 08:14:17 -0600130 err = ext4fs_read((void *)CONFIG_SPL_PAYLOAD_ARGS_ADDR, 0, filelen, &actlen);
Guillaume GARDET8a3aeaf2014-11-25 15:34:16 +0100131 if (err < 0) {
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200132#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
133 printf("%s: error reading image %s, err - %d\n",
134 __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err);
135#endif
136 return -1;
137 }
138
Pali Rohárdda8f882022-01-14 14:31:38 +0100139 return spl_load_image_ext(spl_image, bootdev, block_dev, partition,
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200140 CONFIG_SPL_FS_LOAD_KERNEL_NAME);
141}
Nikita Kiryanovcc49f552015-11-08 17:11:45 +0200142#else
Simon Glass0649e912016-09-24 18:20:14 -0600143int spl_load_image_ext_os(struct spl_image_info *spl_image,
Pali Rohárdda8f882022-01-14 14:31:38 +0100144 struct spl_boot_device *bootdev,
Simon Glass0649e912016-09-24 18:20:14 -0600145 struct blk_desc *block_dev, int partition)
Nikita Kiryanovcc49f552015-11-08 17:11:45 +0200146{
147 return -ENOSYS;
148}
Guillaume GARDET1eb410c2014-10-15 17:53:12 +0200149#endif