From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?B?QW5kcmVhcyBCaWXDn21hbm4=?= Date: Thu, 23 Oct 2014 07:10:11 +0200 Subject: [U-Boot] [PATCH 1/7] dm: at91: Correct text base for snapper9260 In-Reply-To: <54488D24.5020206@googlemail.com> References: <1412619262-23903-1-git-send-email-sjg@chromium.org> <1412619262-23903-2-git-send-email-sjg@chromium.org> <54488D24.5020206@googlemail.com> Message-ID: <54488DB3.9040604@googlemail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de It also seems the maintainer of snapper9260 is not reachable. Simon, do you own such a board? Best regards Andreas Bie?mann On 23.10.14 07:07, Andreas Bie?mann wrote: > Dear Simon, > > On 06.10.14 20:14, Simon Glass wrote: >> The value should be 0x23f00000. Fix it. >> >> Signed-off-by: Simon Glass --- >> >> include/configs/snapper9260.h | 2 +- 1 file changed, 1 >> insertion(+), 1 deletion(-) >> >> diff --git a/include/configs/snapper9260.h >> b/include/configs/snapper9260.h index 1ebee71..adb09c2 100644 --- >> a/include/configs/snapper9260.h +++ b/include/configs/snapper9260.h >> @@ -15,7 +15,7 @@ #include #include >> >> >> -#define CONFIG_SYS_TEXT_BASE 0x20000000 +#define >> CONFIG_SYS_TEXT_BASE 0x23f00000 > > I wonder why this is required. It depends on the first stage loader > snapper9260 uses and I guess the first value is the right one used in > the factory programmed loader. > Nevertheless other at91 boards use 0x21f00000 due to relocation issues > on boards with less RAM. It seems the snapper9260 has just 64MiB of > RAM, this means just 1MiB of space for relocated u-boot, malloc arena, > ... This was exactly the reason for other at91 boards to switch to > 0x21f00000 as base address. > > Best regards > > Andreas Bie?mann >