* bootm multi uimage from nand
@ 2015-11-19 12:58 Jan Remmet
2015-11-19 12:58 ` [PATCH 1/2] bootm: cleanup bootm_open_oftree Jan Remmet
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jan Remmet @ 2015-11-19 12:58 UTC (permalink / raw)
To: barebox
I tried to boot a multi uImage from nand containing the kerenl and several
device trees. It was failing because bootm want to open the .bb device multiblei
times to check the filetype.
I separate the changes for review, feel free to squash the patches.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] bootm: cleanup bootm_open_oftree
2015-11-19 12:58 bootm multi uimage from nand Jan Remmet
@ 2015-11-19 12:58 ` Jan Remmet
2015-11-19 12:58 ` [PATCH 2/2] bootm: get file type before bootm_open_os_uimage Jan Remmet
2015-11-20 7:41 ` bootm multi uimage from nand Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Jan Remmet @ 2015-11-19 12:58 UTC (permalink / raw)
To: barebox
Separate oftree file and uimage oftree handling.
Make fie_type checks in bootm_boot
Signed-off-by: Jan Remmet <j.remmet@phytec.de>
---
common/bootm.c | 82 ++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 54 insertions(+), 28 deletions(-)
diff --git a/common/bootm.c b/common/bootm.c
index 447c9b6..ec1758b 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -245,25 +245,19 @@ static int bootm_open_initrd_uimage(struct image_data *data)
return 0;
}
-static int bootm_open_oftree(struct image_data *data, const char *oftree, int num)
+static int bootm_open_oftree_uimage(struct image_data *data)
{
- enum filetype ft;
struct fdt_header *fdt;
+ enum filetype ft;
+ const char *oftree = data->oftree_file;
+ int num = data->oftree_num;
+ struct uimage_handle *of_handle;
+ int release = 0;
size_t size;
- printf("Loading devicetree from '%s'\n", oftree);
-
- ft = file_name_detect_type(oftree);
- if ((int)ft < 0) {
- printf("failed to open %s: %s\n", oftree, strerror(-(int)ft));
- return ft;
- }
-
- if (ft == filetype_uimage) {
-#ifdef CONFIG_CMD_BOOTM_OFTREE_UIMAGE
- struct uimage_handle *of_handle;
- int release = 0;
+ printf("Loading devicetree from '%s'@%d\n", oftree, num);
+ if (IS_ENABLED(CONFIG_CMD_BOOTM_OFTREE_UIMAGE)) {
if (!strcmp(data->os_file, oftree)) {
of_handle = data->os;
} else if (!strcmp(data->initrd_file, oftree)) {
@@ -280,23 +274,42 @@ static int bootm_open_oftree(struct image_data *data, const char *oftree, int nu
if (release)
uimage_close(of_handle);
-#else
- return -EINVAL;
-#endif
- } else {
- fdt = read_file(oftree, &size);
- if (!fdt) {
- perror("open");
- return -ENODEV;
+
+ ft = file_detect_type(fdt, size);
+ if (ft != filetype_oftree) {
+ printf("%s is not an oftree but %s\n",
+ data->oftree_file, file_type_to_string(ft));
+ return -EINVAL;
}
- }
- ft = file_detect_type(fdt, size);
- if (ft != filetype_oftree) {
- printf("%s is not an oftree but %s\n", oftree,
- file_type_to_string(ft));
+ data->of_root_node = of_unflatten_dtb(fdt);
+ if (!data->of_root_node) {
+ pr_err("unable to unflatten devicetree\n");
+ free(fdt);
+ return -EINVAL;
+ }
+
+ free(fdt);
+
+ return 0;
+ } else {
return -EINVAL;
}
+}
+
+static int bootm_open_oftree(struct image_data *data)
+{
+ struct fdt_header *fdt;
+ const char *oftree = data->oftree_file;
+ size_t size;
+
+ printf("Loading devicetree from '%s'\n", oftree);
+
+ fdt = read_file(oftree, &size);
+ if (!fdt) {
+ perror("open");
+ return -ENODEV;
+ }
data->of_root_node = of_unflatten_dtb(fdt);
if (!data->of_root_node) {
@@ -368,6 +381,7 @@ int bootm_boot(struct bootm_data *bootm_data)
struct image_handler *handler;
int ret;
enum filetype os_type, initrd_type = filetype_unknown;
+ enum filetype oftree_type = filetype_unknown;
if (!bootm_data->os_file) {
printf("no image given\n");
@@ -438,7 +452,19 @@ int bootm_boot(struct bootm_data *bootm_data)
if (IS_ENABLED(CONFIG_OFTREE)) {
if (data->oftree_file) {
- ret = bootm_open_oftree(data, data->oftree_file, data->oftree_num);
+ oftree_type = file_name_detect_type(data->oftree_file);
+
+ if (oftree_type == filetype_uimage)
+ ret = bootm_open_oftree_uimage(data);
+ if (oftree_type == filetype_oftree)
+ ret = bootm_open_oftree(data);
+ if ((int)oftree_type < 0) {
+ printf("could not open %s: %s\n",
+ data->oftree_file,
+ strerror(-oftree_type));
+ ret = (int) oftree_type;
+ }
+
if (ret)
goto err_out;
} else {
--
1.9.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] bootm: get file type before bootm_open_os_uimage
2015-11-19 12:58 bootm multi uimage from nand Jan Remmet
2015-11-19 12:58 ` [PATCH 1/2] bootm: cleanup bootm_open_oftree Jan Remmet
@ 2015-11-19 12:58 ` Jan Remmet
2015-11-20 7:41 ` bootm multi uimage from nand Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Jan Remmet @ 2015-11-19 12:58 UTC (permalink / raw)
To: barebox
Using a multi uimage stored in nand didn't work. Only one open for the
bb file is allowed. The file type detection after bootm_open_os_uimage
will fail. bootm_open_initrd_uimage and bootm_open_oftree_uimage already
check if they can reuse data->os.
Signed-off-by: Jan Remmet <j.remmet@phytec.de>
---
common/bootm.c | 39 ++++++++++++++++++++++-----------------
1 file changed, 22 insertions(+), 17 deletions(-)
diff --git a/common/bootm.c b/common/bootm.c
index ec1758b..08125e7 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -415,6 +415,28 @@ int bootm_boot(struct bootm_data *bootm_data)
goto err_out;
}
+ if (IS_ENABLED(CONFIG_CMD_BOOTM_INITRD) && data->initrd_file) {
+ initrd_type = file_name_detect_type(data->initrd_file);
+
+ if ((int)initrd_type < 0) {
+ printf("could not open %s: %s\n", data->initrd_file,
+ strerror(-initrd_type));
+ ret = (int)initrd_type;
+ goto err_out;
+ }
+ }
+
+ if (IS_ENABLED(CONFIG_OFTREE) && data->oftree_file) {
+ oftree_type = file_name_detect_type(data->oftree_file);
+
+ if ((int)oftree_type < 0) {
+ printf("could not open %s: %s\n", data->oftree_file,
+ strerror(-oftree_type));
+ ret = (int) oftree_type;
+ goto err_out;
+ }
+ }
+
if (os_type == filetype_uimage) {
ret = bootm_open_os_uimage(data);
if (ret) {
@@ -425,14 +447,6 @@ int bootm_boot(struct bootm_data *bootm_data)
}
if (IS_ENABLED(CONFIG_CMD_BOOTM_INITRD) && data->initrd_file) {
-
- initrd_type = file_name_detect_type(data->initrd_file);
- if ((int)initrd_type < 0) {
- printf("could not open %s: %s\n", data->initrd_file,
- strerror(-initrd_type));
- ret = (int)initrd_type;
- goto err_out;
- }
if (initrd_type == filetype_uimage) {
ret = bootm_open_initrd_uimage(data);
if (ret) {
@@ -452,19 +466,10 @@ int bootm_boot(struct bootm_data *bootm_data)
if (IS_ENABLED(CONFIG_OFTREE)) {
if (data->oftree_file) {
- oftree_type = file_name_detect_type(data->oftree_file);
-
if (oftree_type == filetype_uimage)
ret = bootm_open_oftree_uimage(data);
if (oftree_type == filetype_oftree)
ret = bootm_open_oftree(data);
- if ((int)oftree_type < 0) {
- printf("could not open %s: %s\n",
- data->oftree_file,
- strerror(-oftree_type));
- ret = (int) oftree_type;
- }
-
if (ret)
goto err_out;
} else {
--
1.9.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bootm multi uimage from nand
2015-11-19 12:58 bootm multi uimage from nand Jan Remmet
2015-11-19 12:58 ` [PATCH 1/2] bootm: cleanup bootm_open_oftree Jan Remmet
2015-11-19 12:58 ` [PATCH 2/2] bootm: get file type before bootm_open_os_uimage Jan Remmet
@ 2015-11-20 7:41 ` Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2015-11-20 7:41 UTC (permalink / raw)
To: Jan Remmet; +Cc: barebox
Hi Jan,
On Thu, Nov 19, 2015 at 01:58:22PM +0100, Jan Remmet wrote:
> I tried to boot a multi uImage from nand containing the kerenl and several
> device trees. It was failing because bootm want to open the .bb device multiblei
> times to check the filetype.
> I separate the changes for review, feel free to squash the patches.
I kept them as two separate patches just in case git bisect ever points
to one of them. Thanks, applied.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-20 7:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-19 12:58 bootm multi uimage from nand Jan Remmet
2015-11-19 12:58 ` [PATCH 1/2] bootm: cleanup bootm_open_oftree Jan Remmet
2015-11-19 12:58 ` [PATCH 2/2] bootm: get file type before bootm_open_os_uimage Jan Remmet
2015-11-20 7:41 ` bootm multi uimage from nand Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox