mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Lucas Stach <l.stach@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 4/4] ARM: phycore-am33xx: remove extra FDT memcpy
Date: Thu,  1 May 2014 23:32:52 +0200	[thread overview]
Message-ID: <1398979972-14446-5-git-send-email-l.stach@pengutronix.de> (raw)
In-Reply-To: <1398979972-14446-1-git-send-email-l.stach@pengutronix.de>

Not needed anymore, as barebox now accepts FDTs outside
of it's visible DRAM, as long as it's a valid pointer.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 arch/arm/boards/phytec-phycore-am335x/lowlevel.c | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/arch/arm/boards/phytec-phycore-am335x/lowlevel.c b/arch/arm/boards/phytec-phycore-am335x/lowlevel.c
index a413b677538f..f04961dbf7d5 100644
--- a/arch/arm/boards/phytec-phycore-am335x/lowlevel.c
+++ b/arch/arm/boards/phytec-phycore-am335x/lowlevel.c
@@ -47,7 +47,6 @@ static const struct am33xx_ddr_data MT41J256M8HX15E_2x256M8_data = {
 };
 
 extern char __dtb_am335x_phytec_phycore_start[];
-extern char __dtb_am335x_phytec_phycore_end[];
 
 /**
  * @brief The basic entry point for board initialization.
@@ -60,7 +59,6 @@ extern char __dtb_am335x_phytec_phycore_end[];
  */
 static noinline void pcm051_board_init(void)
 {
-	uint32_t sdram = 0x80000000;
 	void *fdt;
 
 	/* WDT1 is already running when the bootloader gets control
@@ -83,16 +81,9 @@ static noinline void pcm051_board_init(void)
 	omap_uart_lowlevel_init((void *)AM33XX_UART0_BASE);
 	putc_ll('>');
 
-	/*
-	 * Copy the devicetree blob to sdram so that the barebox code finds it
-	 * inside valid SDRAM instead of SRAM.
-	 */
-	memcpy((void *)sdram, __dtb_am335x_phytec_phycore_start,
-			__dtb_am335x_phytec_phycore_end -
-			__dtb_am335x_phytec_phycore_start);
-	fdt = (void *)sdram;
+	fdt = __dtb_am335x_phytec_phycore_start - get_runtime_offset();
 
-	barebox_arm_entry(sdram, SZ_512M, fdt);
+	barebox_arm_entry(0x80000000, SZ_512M, fdt);
 }
 
 ENTRY_FUNCTION(start_am33xx_phytec_phycore_sram, bootinfo, r1, r2)
-- 
1.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      parent reply	other threads:[~2014-05-01 21:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-01 21:32 [PATCH 0/4] barebox_arm_entry signature change Lucas Stach
2014-05-01 21:32 ` [PATCH 1/4] ARM: change signature of barebox_arm_entry Lucas Stach
2014-05-01 21:32 ` [PATCH 2/4] ARM: beaglebone: remove extra FDT memcpy Lucas Stach
2014-05-01 21:32 ` [PATCH 3/4] ARM: eDM-QMX6: " Lucas Stach
2014-05-01 21:32 ` Lucas Stach [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1398979972-14446-5-git-send-email-l.stach@pengutronix.de \
    --to=l.stach@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox