From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Tue, 24 Nov 2015 12:04:56 -0700 Subject: [U-Boot] [PATCH] common: image-fdt: correct fdt_blob for IMAGE_FORMAT_LEGACY In-Reply-To: <1448355263-545-3-git-send-email-Peng.Fan@freescale.com> References: <1448355263-545-1-git-send-email-Peng.Fan@freescale.com> <1448355263-545-3-git-send-email-Peng.Fan@freescale.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Peng, On 24 November 2015 at 01:54, Peng Fan wrote: > If condition of "(load == image_start || load == image_data)" is true, > should use "fdt_addr = load;", but not "fdt_blob = (char *)image_data;", > or fdt_blob will be overridden by "fdt_blob = map_sysmem(fdt_addr, 0);" > at the end of the switch case. > > Signed-off-by: Peng Fan > Cc: Simon Glass > Cc: Joe Hershberger > Cc: Max Krummenacher > Cc: Marek Vasut > Cc: Suriyan Ramasami > Cc: Paul Kocialkowski > Cc: Tom Rini > --- > common/image-fdt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/common/image-fdt.c b/common/image-fdt.c > index 5180a03..5e4e5bd 100644 > --- a/common/image-fdt.c > +++ b/common/image-fdt.c > @@ -326,7 +326,7 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch, > > if (load == image_start || > load == image_data) { > - fdt_blob = (char *)image_data; > + fdt_addr = load; > break; > } Are you sure that should not be: fdt_addr = image_data ? The idea is to pick up the FDT from inside the image, since the load address indicates that it should not be relocated. BTW one more thing I noticed: image_data = (ulong)image_get_data(fdt_hdr); The cast is confusing, and can be removed. Regards, Simon