public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove
@ 2009-02-17  7:29 Minkyu Kang
  2009-02-17  8:19 ` Wolfgang Denk
  0 siblings, 1 reply; 6+ messages in thread
From: Minkyu Kang @ 2009-02-17  7:29 UTC (permalink / raw)
  To: u-boot

Although load address and image start address are same address, bootm command does memmove.
That is unnecessary memmove and can be taken few milliseconds (about 500 msec to 1000 msec).
If reduce this memmove, we can reduce the boot time.

Please check this patch.

Thank you.
Minkyu Kang.


Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
---
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 07f6c6b..437f3f8 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -340,7 +340,8 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
 		} else {
 			printf ("   Loading %s ... ", type_name);
 
-			memmove_wd ((void *)load,
+			if (load != image_start)
+				memmove_wd ((void *)load,
 				   (void *)image_start, image_len, CHUNKSZ);
 		}
 		*load_end = load + image_len;

^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove
@ 2009-02-18  0:05 Minkyu Kang
  2009-02-21 22:00 ` Wolfgang Denk
  2009-02-22 16:05 ` Larry Johnson
  0 siblings, 2 replies; 6+ messages in thread
From: Minkyu Kang @ 2009-02-18  0:05 UTC (permalink / raw)
  To: u-boot

Although load address and image start address are same address,
bootm command always does memmove.
That is unnecessary memmove and can be taken few milliseconds
(about 500 msec to 1000 msec).
If skip this memmove, we can reduce the boot time.

Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
---
 common/cmd_bootm.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 07f6c6b..6fdeef4 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -340,8 +340,10 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
 		} else {
 			printf ("   Loading %s ... ", type_name);
 
-			memmove_wd ((void *)load,
-				   (void *)image_start, image_len, CHUNKSZ);
+			if (load != image_start) {
+				memmove_wd ((void *)load,
+						(void *)image_start, image_len, CHUNKSZ);
+			}
 		}
 		*load_end = load + image_len;
 		puts("OK\n");

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-02-22 21:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17  7:29 [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove Minkyu Kang
2009-02-17  8:19 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2009-02-18  0:05 Minkyu Kang
2009-02-21 22:00 ` Wolfgang Denk
2009-02-22 16:05 ` Larry Johnson
2009-02-22 21:34   ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox