public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy
       [not found] <4e5681daf84a08d160751c3da392f654e2b440ef.1409033663.git.marcel@ziswiler.com>
@ 2014-08-26  9:49 ` Marcel Ziswiler
  2014-08-26 16:27   ` Stephen Warren
  0 siblings, 1 reply; 5+ messages in thread
From: Marcel Ziswiler @ 2014-08-26  9:49 UTC (permalink / raw)
  To: u-boot

Use architecture specific memcpy to speed up things.

Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
---
 include/configs/tegra-common.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/tegra-common.h b/include/configs/tegra-common.h
index 16f45f5..be1c7f5 100644
--- a/include/configs/tegra-common.h
+++ b/include/configs/tegra-common.h
@@ -109,6 +109,8 @@
 #define CONFIG_SYS_MEMTEST_START	(NV_PA_SDRC_CS0 + 0x600000)
 #define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_MEMTEST_START + 0x100000)
 
+#define CONFIG_USE_ARCH_MEMCPY
+
 /*-----------------------------------------------------------------------
  * Physical Memory Map
  */
-- 
1.9.3

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

* [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy
  2014-08-26  9:49 ` [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy Marcel Ziswiler
@ 2014-08-26 16:27   ` Stephen Warren
  2014-08-27  6:39     ` Marcel Ziswiler
  2014-10-20 15:29     ` Marcel Ziswiler
  0 siblings, 2 replies; 5+ messages in thread
From: Stephen Warren @ 2014-08-26 16:27 UTC (permalink / raw)
  To: u-boot

On 08/26/2014 03:49 AM, Marcel Ziswiler wrote:
> Use architecture specific memcpy to speed up things.

Tested-by: Stephen Warren <swarren@nvidia.com>

On Jetson TK1, this makes my "dhcp zImage" on my USB ethernet dongle got 
from ~1.7MiB/s to ~2.8MiB/s :-)

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

* [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy
  2014-08-26 16:27   ` Stephen Warren
@ 2014-08-27  6:39     ` Marcel Ziswiler
  2014-10-20 15:29     ` Marcel Ziswiler
  1 sibling, 0 replies; 5+ messages in thread
From: Marcel Ziswiler @ 2014-08-27  6:39 UTC (permalink / raw)
  To: u-boot

On Tue, 2014-08-26 at 10:27 -0600, Stephen Warren wrote:
> On Jetson TK1, this makes my "dhcp zImage" on my USB ethernet dongle got 
> from ~1.7MiB/s to ~2.8MiB/s :-)

Very well indeed. As mentioned before Stefan discovered this working on
Vybrid where we saw similar speed-up when booting from NAND flash.

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

* [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy
  2014-08-26 16:27   ` Stephen Warren
  2014-08-27  6:39     ` Marcel Ziswiler
@ 2014-10-20 15:29     ` Marcel Ziswiler
       [not found]       ` <63e565f03bf4447d826cf54340df108c@HQMAIL103.nvidia.com>
  1 sibling, 1 reply; 5+ messages in thread
From: Marcel Ziswiler @ 2014-10-20 15:29 UTC (permalink / raw)
  To: u-boot

On Tue, 2014-08-26 at 10:27 -0600, Stephen Warren wrote:
> On Jetson TK1, this makes my "dhcp zImage" on my USB ethernet dongle got 
> from ~1.7MiB/s to ~2.8MiB/s :-)

I just noticed this not having been applied anywhere yet. Is the tegra
tree eventually gona be re-based and this being applied?

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

* [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy
       [not found]       ` <63e565f03bf4447d826cf54340df108c@HQMAIL103.nvidia.com>
@ 2014-10-21 11:42         ` Marcel Ziswiler
  0 siblings, 0 replies; 5+ messages in thread
From: Marcel Ziswiler @ 2014-10-21 11:42 UTC (permalink / raw)
  To: u-boot

On Mon, 2014-10-20 at 15:40 +0000, Tom Warren wrote:
> Sorry, Marcel. Must have missed it. I'll rebase u-boot-tegra/master against ARM master and apply this, and if no other Tegra patches are pending, I'll send a PR later this week.

Thanks, Tom. According to my notes the following 10 patches are still
pending:

[PATCH] arm: tegra: use architecture specific memcpy
Tested-by: Stephen Warren <swarren@nvidia.com>

[PATCH v2] ARM: tegra: Use mem size from MC in combination with
get_ram_size()
Acked-by: Stephen Warren <swarren@nvidia.com>

[PATCH] tegra: colibri_t30: clean-up spurious new line
Acked-by: Simon Glass <sjg@chromium.org>

[PATCH] tegra: gpio: fix null label regression
Acked-by: Simon Glass <sjg@chromium.org>

[PATCH] tegra: apalis_t30: master revamp

[PATCH] tegra: dts: colibri_t30 add serial port details

[PATCH] tegra: clean-up useless define
Acked-by: Simon Glass <sjg@chromium.org>

[PATCH] gpio: header file comment spelling fixes
Acked-by: Simon Glass <sjg@chromium.org>

[PATCH] tegra: colibri_t30: asix usb ethernet reset regression
Acked-by: Simon Glass <sjg@chromium.org>

[PATCH] mmc: Tegra: Fix timeout issue seen on certain eMMC parts

Are you OK with those or should I resend any of them?

BTW: Maybe acknowledging patch emails with applied messages like some
other maintainers do would ease the tracking of an individual patch's
status.

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

end of thread, other threads:[~2014-10-21 11:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <4e5681daf84a08d160751c3da392f654e2b440ef.1409033663.git.marcel@ziswiler.com>
2014-08-26  9:49 ` [U-Boot] [PATCH] arm: tegra: use architecture specific memcpy Marcel Ziswiler
2014-08-26 16:27   ` Stephen Warren
2014-08-27  6:39     ` Marcel Ziswiler
2014-10-20 15:29     ` Marcel Ziswiler
     [not found]       ` <63e565f03bf4447d826cf54340df108c@HQMAIL103.nvidia.com>
2014-10-21 11:42         ` Marcel Ziswiler

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