[new uImage] Optimize gen_get_image() flow control

When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
to do, update its control flow to better reflect that simple case.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
Marian Balakowicz 2008-02-27 11:00:47 +01:00
parent d2ced9eb19
commit 6f0f9dfc4e

View File

@ -408,55 +408,57 @@ int gen_image_get_format (void *img_addr)
*/ */
ulong gen_get_image (ulong img_addr) ulong gen_get_image (ulong img_addr)
{ {
ulong ram_addr, h_size, d_size; ulong ram_addr = img_addr;
h_size = image_get_header_size ();
#if defined(CONFIG_FIT)
if (sizeof(struct fdt_header) > h_size)
h_size = sizeof(struct fdt_header);
#endif
#ifdef CONFIG_HAS_DATAFLASH #ifdef CONFIG_HAS_DATAFLASH
ulong h_size, d_size;
if (addr_dataflash (img_addr)){ if (addr_dataflash (img_addr)){
/* ger RAM address */
ram_addr = CFG_LOAD_ADDR; ram_addr = CFG_LOAD_ADDR;
/* get header size */
h_size = image_get_header_size ();
#if defined(CONFIG_FIT)
if (sizeof(struct fdt_header) > h_size)
h_size = sizeof(struct fdt_header);
#endif
/* read in header */
debug (" Reading image header from dataflash address " debug (" Reading image header from dataflash address "
"%08lx to RAM address %08lx\n", img_addr, ram_addr); "%08lx to RAM address %08lx\n", img_addr, ram_addr);
read_dataflash (img_addr, h_size, (char *)ram_addr); read_dataflash (img_addr, h_size, (char *)ram_addr);
} else
#endif
return img_addr;
ram_addr = img_addr; /* get data size */
switch (gen_image_get_format ((void *)ram_addr)) {
switch (gen_image_get_format ((void *)ram_addr)) { case IMAGE_FORMAT_LEGACY:
case IMAGE_FORMAT_LEGACY: d_size = image_get_data_size ((image_header_t *)ram_addr);
d_size = image_get_data_size ((image_header_t *)ram_addr); debug (" Legacy format image found at 0x%08lx, size 0x%08lx\n",
debug (" Legacy format image found at 0x%08lx, size 0x%08lx\n", ram_addr, d_size);
ram_addr, d_size); break;
break;
#if defined(CONFIG_FIT) #if defined(CONFIG_FIT)
case IMAGE_FORMAT_FIT: case IMAGE_FORMAT_FIT:
d_size = fdt_totalsize((void *)ram_addr) - h_size; d_size = fdt_totalsize((void *)ram_addr) - h_size;
debug (" FIT/FDT format image found at 0x%08lx, size 0x%08lx\n", debug (" FIT/FDT format image found at 0x%08lx, size 0x%08lx\n",
ram_addr, d_size); ram_addr, d_size);
break;
break;
#endif #endif
default: default:
printf (" No valid image found at 0x%08lx\n", img_addr); printf (" No valid image found at 0x%08lx\n", img_addr);
return ram_addr; return ram_addr;
} }
#ifdef CONFIG_HAS_DATAFLASH /* read in image data */
if (addr_dataflash (img_addr)) {
debug (" Reading image remaining data from dataflash address " debug (" Reading image remaining data from dataflash address "
"%08lx to RAM address %08lx\n", img_addr + h_size, "%08lx to RAM address %08lx\n", img_addr + h_size,
ram_addr + h_size); ram_addr + h_size);
read_dataflash (img_addr + h_size, d_size, read_dataflash (img_addr + h_size, d_size,
(char *)(ram_addr + h_size)); (char *)(ram_addr + h_size));
} }
#endif #endif /* CONFIG_HAS_DATAFLASH */
return ram_addr; return ram_addr;
} }