diff mbox

[U-Boot,1/3] SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undeclared

Message ID 1294415633-21029-1-git-send-email-bocui107@gmail.com
State Changes Requested
Delegated to: Albert ARIBAUD
Headers show

Commit Message

seedshope Jan. 7, 2011, 3:53 p.m. UTC
From: seedshope <bocui107@gmail.com>

CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM
and substract the global size.

Signed-off-by: seedshope <bocui107@googlemail.com>

Comments

Albert ARIBAUD Jan. 8, 2011, 5:55 a.m. UTC | #1
Le 07/01/2011 16:53, seedshope a écrit :
> From: seedshope<bocui107@gmail.com>
>
> CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM
> and substract the global size.
>
> Signed-off-by: seedshope<bocui107@googlemail.com>

Please fix the From: line in all patches in this set; it should not 
appear in the long commit message.

Amicalement,
seedshope Jan. 8, 2011, 3:10 p.m. UTC | #2
On 01/08/2011 01:55 PM, Albert ARIBAUD wrote:
> Le 07/01/2011 16:53, seedshope a écrit :
>> From: seedshope<bocui107@gmail.com>
>>
>> CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM
>> and substract the global size.
>>
>> Signed-off-by: seedshope<bocui107@googlemail.com>
> Please fix the From: line in all patches in this set; it should not
> appear in the long commit message.
ok, I will send RR2.

Thanks,
seedshope
> Amicalement,
Albert ARIBAUD Jan. 8, 2011, 3:17 p.m. UTC | #3
Le 08/01/2011 16:10, seedshope a écrit :
> On 01/08/2011 01:55 PM, Albert ARIBAUD wrote:
>> Le 07/01/2011 16:53, seedshope a écrit :
>>> From: seedshope<bocui107@gmail.com>
>>>
>>> CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM
>>> and substract the global size.
>>>
>>> Signed-off-by: seedshope<bocui107@googlemail.com>
>> Please fix the From: line in all patches in this set; it should not
>> appear in the long commit message.
> ok, I will send RR2.
>
> Thanks,

You're welcome.

Don't forget to add some history in V2, so that people can tell what you 
changed from V1 to V2 of the patch.

> seedshope

Amicalement,
seedshope Jan. 9, 2011, 1:15 a.m. UTC | #4
On 01/08/2011 11:17 PM, Albert ARIBAUD wrote:
> Le 08/01/2011 16:10, seedshope a écrit :
>> On 01/08/2011 01:55 PM, Albert ARIBAUD wrote:
>>> Le 07/01/2011 16:53, seedshope a écrit :
>>>> From: seedshope<bocui107@gmail.com>
>>>>
>>>> CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM
>>>> and substract the global size.
>>>>
>>>> Signed-off-by: seedshope<bocui107@googlemail.com>
>>> Please fix the From: line in all patches in this set; it should not
>>> appear in the long commit message.
>> ok, I will send RR2.
>>
>> Thanks,
>
> You're welcome.
>
> Don't forget to add some history in V2, so that people can tell what 
> you changed from V1 to V2 of the patch.
ok,

Thanks,
seedshope
>
>> seedshope
>
> Amicalement,
diff mbox

Patch

diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h
index 671f2c7..037db4f 100644
--- a/include/configs/smdk6400.h
+++ b/include/configs/smdk6400.h
@@ -174,6 +174,11 @@ 
 #define PHYS_SDRAM_1		CONFIG_SYS_SDRAM_BASE	/* SDRAM Bank #1	*/
 #define PHYS_SDRAM_1_SIZE	0x08000000	/* 128 MB in Bank #1	*/
 
+#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_FLASH_BASE		0x10000000
 #define CONFIG_SYS_MONITOR_BASE	0x00000000