* [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
@ 2007-08-31 16:20 Bartlomiej Sieka
2007-08-31 16:23 ` Timur Tabi
2007-09-04 15:31 ` [U-Boot-Users] [PATCH V2] " Bartlomiej Sieka
0 siblings, 2 replies; 7+ messages in thread
From: Bartlomiej Sieka @ 2007-08-31 16:20 UTC (permalink / raw)
To: u-boot
Fix the following issues in do_bootm_linux() that prevent booting the kernel
from a mulit-file image (kernel + initrd + blob):
- incorrect initrd address and length calculation
- incorrect blob address calculation
Also, make minor updates to the U-Boot's output and to the coding style.
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
---
Tested on two MPC5200B-based boards, one using CONFIG_OF_FLAT_TREE (still),
the other using CONFIG_OF_LIBFDT. On each board the mulit-file image was
booted from an address in RAM, as well as in Flash.
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index bcb927f..4aca783 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -724,9 +724,8 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
if (tail) {
data += 4 - tail;
}
-
- len = ntohl(len_ptr[1]);
-
+ len = ntohl (((image_header_t *)data)->ih_size);
+ data = data + sizeof(image_header_t);
} else {
/*
* no initrd image
@@ -817,27 +816,32 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
int i;
/* skip kernel length, initrd length, and terminator */
- of_data = (ulong)(&len_ptr[3]);
+ of_flat_tree = (char *)(&len_ptr[3]);
/* skip any additional image length fields */
for (i=2; len_ptr[i]; ++i)
- of_data += 4;
+ of_flat_tree += 4;
/* add kernel length, and align */
- of_data += ntohl(len_ptr[0]);
+ of_flat_tree += ntohl(len_ptr[0]);
if (tail) {
- of_data += 4 - tail;
+ of_flat_tree += 4 - tail;
}
/* add initrd length, and align */
tail = ntohl(len_ptr[1]) % 4;
- of_data += ntohl(len_ptr[1]);
+ of_flat_tree += ntohl(len_ptr[1]);
if (tail) {
- of_data += 4 - tail;
+ of_flat_tree += 4 - tail;
}
+ /* move the blob if it is in flash (set of_data to !null) */
+ if (addr2info ((ulong)of_flat_tree) != NULL)
+ of_data = (ulong)of_flat_tree;
+
+
#if defined(CONFIG_OF_FLAT_TREE)
- if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
+ if (*((ulong *)(of_flat_tree)) != OF_DT_HEADER) {
#else
- if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) {
+ if (fdt_check_header (of_flat_tree) != 0) {
#endif
puts ("ERROR: image is not a fdt - "
"must RESET the board to recover.\n");
@@ -845,9 +849,11 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
}
#if defined(CONFIG_OF_FLAT_TREE)
- if (((struct boot_param_header *)of_data)->totalsize != ntohl(len_ptr[2])) {
+ if (((struct boot_param_header *)of_flat_tree)->totalsize !=
+ ntohl (len_ptr[2])) {
#else
- if (be32_to_cpu(fdt_totalsize(of_data)) != ntohl(len_ptr[2])) {
+ if (be32_to_cpu (fdt_totalsize (of_flat_tree)) !=
+ ntohl(len_ptr[2])) {
#endif
puts ("ERROR: fdt size != image size - "
"must RESET the board to recover.\n");
@@ -957,6 +963,7 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
"must RESET the board to recover.\n");
do_reset (cmdtp, flag, argc, argv);
}
+ puts ("OK\n");
}
/*
* Add the chosen node if it doesn't exist, add the env and bd_t
@@ -1011,6 +1018,7 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
printf (" Loading Device Tree to %08lx, end %08lx ... ",
of_start, of_start + of_len - 1);
memmove ((void *)of_start, (void *)of_data, of_len);
+ puts ("OK\n");
}
/*
* Create the /chosen node and modify the blob with board specific
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-08-31 16:20 [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot Bartlomiej Sieka
@ 2007-08-31 16:23 ` Timur Tabi
2007-08-31 16:33 ` Bartlomiej Sieka
2007-09-04 15:31 ` [U-Boot-Users] [PATCH V2] " Bartlomiej Sieka
1 sibling, 1 reply; 7+ messages in thread
From: Timur Tabi @ 2007-08-31 16:23 UTC (permalink / raw)
To: u-boot
Bartlomiej Sieka wrote:
> Fix the following issues in do_bootm_linux() that prevent booting the kernel
> from a mulit-file image (kernel + initrd + blob):
> - incorrect initrd address and length calculation
I thought this bug has already been fixed. Are the initrd address and length
calculations broken again?
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-08-31 16:23 ` Timur Tabi
@ 2007-08-31 16:33 ` Bartlomiej Sieka
2007-08-31 16:38 ` Timur Tabi
0 siblings, 1 reply; 7+ messages in thread
From: Bartlomiej Sieka @ 2007-08-31 16:33 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> Bartlomiej Sieka wrote:
>> Fix the following issues in do_bootm_linux() that prevent booting the
>> kernel
>> from a mulit-file image (kernel + initrd + blob):
>> - incorrect initrd address and length calculation
>
> I thought this bug has already been fixed. Are the initrd address and
> length calculations broken again?
I don't know - I have tested today's U-Boot (60174746) and multi-file
image booting didn't work:
## Booting image at ff180000 ...
Image Name: Kernel + initial ram disk + FDT
Created: 2007-08-31 12:24:07 UTC
Image Type: PowerPC Linux Multi-File Image (gzip compressed)
Data Size: 2894640 Bytes = 2.8 MB
Load Address: 00000000
Entry Point: 00000000
Contents:
Image 0: 1351205 Bytes = 1.3 MB
Image 1: 1531127 Bytes = 1.5 MB
Image 2: 12288 Bytes = 12 kB
Verifying Checksum ... OK
Uncompressing Multi-File Image ... OK
ERROR: image is not a fdt - must RESET the board to recover.
I might have missed a patch, though - could you provide a pointer to the
fix that you have in mind?
Regards,
Bartlomiej
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-08-31 16:33 ` Bartlomiej Sieka
@ 2007-08-31 16:38 ` Timur Tabi
2007-08-31 16:50 ` Bartlomiej Sieka
0 siblings, 1 reply; 7+ messages in thread
From: Timur Tabi @ 2007-08-31 16:38 UTC (permalink / raw)
To: u-boot
Bartlomiej Sieka wrote:
> I might have missed a patch, though - could you provide a pointer to the
> fix that you have in mind?
http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commit;h=9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-08-31 16:38 ` Timur Tabi
@ 2007-08-31 16:50 ` Bartlomiej Sieka
0 siblings, 0 replies; 7+ messages in thread
From: Bartlomiej Sieka @ 2007-08-31 16:50 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> Bartlomiej Sieka wrote:
>
>> I might have missed a patch, though - could you provide a pointer to
>> the fix that you have in mind?
>
> http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commit;h=9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
Timur,
As I said - I have tested today's ToT U-Boot - which contains the above
patch - and observed the problem. And more importantly, the patch is not
related to booting mulit-image files, which is the scenario I am dealing
with.
Regards,
Bartlomiej
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH V2] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-08-31 16:20 [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot Bartlomiej Sieka
2007-08-31 16:23 ` Timur Tabi
@ 2007-09-04 15:31 ` Bartlomiej Sieka
2007-09-06 22:14 ` Wolfgang Denk
1 sibling, 1 reply; 7+ messages in thread
From: Bartlomiej Sieka @ 2007-09-04 15:31 UTC (permalink / raw)
To: u-boot
Fix incorrect blob address calculation in do_bootm_linux() that prevents
booting the kernel from a multi-file image (kernel + initrd + blob).
Also, make minor updates to the U-Boot's output and to the coding style.
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
---
My previous patch was wrong in "fixing" the initrd length. do_bootm_linux()
expects the initial ramdisk embedded in a multi-file image to be a raw
compressed initrd (like ramdisk_image.gz), and not an U-Boot image (like
uRamdisk).
Tested on two MPC5200B-based boards, one using CONFIG_OF_FLAT_TREE (still),
the other using CONFIG_OF_LIBFDT. On each board the multi-file image was
booted from an address in RAM, as well as in Flash.
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index bcb927f..9d99262 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -817,27 +817,32 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
int i;
/* skip kernel length, initrd length, and terminator */
- of_data = (ulong)(&len_ptr[3]);
+ of_flat_tree = (char *)(&len_ptr[3]);
/* skip any additional image length fields */
for (i=2; len_ptr[i]; ++i)
- of_data += 4;
+ of_flat_tree += 4;
/* add kernel length, and align */
- of_data += ntohl(len_ptr[0]);
+ of_flat_tree += ntohl(len_ptr[0]);
if (tail) {
- of_data += 4 - tail;
+ of_flat_tree += 4 - tail;
}
/* add initrd length, and align */
tail = ntohl(len_ptr[1]) % 4;
- of_data += ntohl(len_ptr[1]);
+ of_flat_tree += ntohl(len_ptr[1]);
if (tail) {
- of_data += 4 - tail;
+ of_flat_tree += 4 - tail;
}
+ /* move the blob if it is in flash (set of_data to !null) */
+ if (addr2info ((ulong)of_flat_tree) != NULL)
+ of_data = (ulong)of_flat_tree;
+
+
#if defined(CONFIG_OF_FLAT_TREE)
- if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
+ if (*((ulong *)(of_flat_tree)) != OF_DT_HEADER) {
#else
- if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) {
+ if (fdt_check_header (of_flat_tree) != 0) {
#endif
puts ("ERROR: image is not a fdt - "
"must RESET the board to recover.\n");
@@ -845,9 +850,11 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
}
#if defined(CONFIG_OF_FLAT_TREE)
- if (((struct boot_param_header *)of_data)->totalsize != ntohl(len_ptr[2])) {
+ if (((struct boot_param_header *)of_flat_tree)->totalsize !=
+ ntohl (len_ptr[2])) {
#else
- if (be32_to_cpu(fdt_totalsize(of_data)) != ntohl(len_ptr[2])) {
+ if (be32_to_cpu (fdt_totalsize (of_flat_tree)) !=
+ ntohl(len_ptr[2])) {
#endif
puts ("ERROR: fdt size != image size - "
"must RESET the board to recover.\n");
@@ -957,6 +964,7 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
"must RESET the board to recover.\n");
do_reset (cmdtp, flag, argc, argv);
}
+ puts ("OK\n");
}
/*
* Add the chosen node if it doesn't exist, add the env and bd_t
@@ -1011,6 +1019,7 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
printf (" Loading Device Tree to %08lx, end %08lx ... ",
of_start, of_start + of_len - 1);
memmove ((void *)of_start, (void *)of_data, of_len);
+ puts ("OK\n");
}
/*
* Create the /chosen node and modify the blob with board specific
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot-Users] [PATCH V2] Fix do_bootm_linux() so that multi-file images with FDT blob boot.
2007-09-04 15:31 ` [U-Boot-Users] [PATCH V2] " Bartlomiej Sieka
@ 2007-09-06 22:14 ` Wolfgang Denk
0 siblings, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2007-09-06 22:14 UTC (permalink / raw)
To: u-boot
In message <20070904153121.GA26163@frozen.semihalf.com> you wrote:
> Fix incorrect blob address calculation in do_bootm_linux() that prevents
> booting the kernel from a multi-file image (kernel + initrd + blob).
>
> Also, make minor updates to the U-Boot's output and to the coding style.
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"A complex system that works is invariably found to have evolved from
a simple system that worked." - John Gall, _Systemantics_
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-09-06 22:14 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-31 16:20 [U-Boot-Users] [PATCH] Fix do_bootm_linux() so that multi-file images with FDT blob boot Bartlomiej Sieka
2007-08-31 16:23 ` Timur Tabi
2007-08-31 16:33 ` Bartlomiej Sieka
2007-08-31 16:38 ` Timur Tabi
2007-08-31 16:50 ` Bartlomiej Sieka
2007-09-04 15:31 ` [U-Boot-Users] [PATCH V2] " Bartlomiej Sieka
2007-09-06 22:14 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox