diff mbox

[U-Boot,v4,1/6] SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined

Message ID 1295624053-8060-2-git-send-email-bocui107@gmail.com
State Rejected
Headers show

Commit Message

seedshope Jan. 21, 2011, 3:34 p.m. UTC
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue.

Signed-off-by: seedshope <bocui107@gmail.com>
---
 include/configs/smdk6400.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

Comments

Wolfgang Denk Jan. 21, 2011, 8:42 p.m. UTC | #1
Dear seedshope,

In message <1295624053-8060-2-git-send-email-bocui107@gmail.com> you wrote:
> Fix CONFIG_SYS_INIT_SP_ADDR undefined issue.
> 
> Signed-off-by: seedshope <bocui107@gmail.com>

I'm sorry, but please consider all your patches rejected unless you
provide a Signed-off-by: using your real name (sorry, no pseudonyms
or anonymous contributions.)


Best regards,

Wolfgang Denk
seedshope Jan. 22, 2011, 1:51 a.m. UTC | #2
On 01/22/2011 04:42 AM, Wolfgang Denk wrote:
> Dear seedshope,
>
> In message<1295624053-8060-2-git-send-email-bocui107@gmail.com>  you wrote:
>> Fix CONFIG_SYS_INIT_SP_ADDR undefined issue.
>>
>> Signed-off-by: seedshope<bocui107@gmail.com>
> I'm sorry, but please consider all your patches rejected unless you
> provide a Signed-off-by: using your real name (sorry, no pseudonyms
> or anonymous contributions.)
>
ok, This is the first to join the free software for me.
So I use my pseudonyms(My English name), I will use the spelling of my name.

Thanks,
seedshope
> Best regards,
>
> Wolfgang Denk
>
diff mbox

Patch

diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h
index 671f2c7..c9acf58 100644
--- a/include/configs/smdk6400.h
+++ b/include/configs/smdk6400.h
@@ -44,6 +44,11 @@ 
 #define CONFIG_PERIPORT_BASE	0x70000000
 #define CONFIG_PERIPORT_SIZE	0x13
 
+#define CONFIG_SYS_IRAM_BASE    0x0c000000  /* Internal SRAM base address */
+#define CONFIG_SYS_IRAM_SIZE    0x2000      /* 8 KB of internal SRAM memory */
+#define CONFIG_SYS_IRAM_END     (CONFIG_SYS_IRAM_BASE + CONFIG_SYS_IRAM_SIZE)
+#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_IRAM_END - GENERATED_GBL_DATA_SIZE)
+
 #define CONFIG_SYS_SDRAM_BASE	0x50000000
 
 /* input clock of PLL: SMDK6400 has 12MHz input clock */