[U-Boot] [PATCH] Add _end for the end of u-boot image for SMDK6400

2011-05-01 Thread seedshope
From: seedshope bocui...@gmail.com Since we rename _end to __bss_end__, But we need add _end symbol for the end of u-boot image. Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds index 0153e0e

[U-Boot] Add _end symbol in SMDK6410 link script

2011-05-01 Thread seedshope
-boot.map -o u-boot arch/arm/cpu/arm1176/start.o: In function `_end_ofs': /home/seedshope/work/bootloader/u-boot/arch/arm/cpu/arm1176/start.S:61: undefined reference to `_end' make: *** [/home/seedshope/work/bootloader/u-boot_obj/smdk6400/u-boot] Error 1

[U-Boot] [PATCH] Add _end for the end of u-boot image for SMDK6400

2011-05-01 Thread seedshope
From: seedshope bocui...@gmail.com Since we rename _end to __bss_end__, But we need add _end symbol for the end of u-boot image. Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds index 0153e0e

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-22 Thread seedshope
On 01/22/2011 03:31 PM, Albert ARIBAUD wrote: Hi seedshope, Le 22/01/2011 02:56, seedshope a écrit : My patch is ok, I just two tabs in my e-mail, But I sent the mail, It is change. Do you send the patch through git format-patch and git send-email? Yes, I use the git format-patch and git

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-22 Thread seedshope
On 01/22/2011 01:52 AM, Sergei Shtylyov wrote: Hello. seedshope wrote: Since SDRAM init function have already change, So the SDRAM initial function must be change. This description sounds somewhat tautological... Signed-off-by: seedshope bocui...@gmail.com Your real name is required

[U-Boot] RR v5 PATCH: SMDK6400 Fix some build bug

2011-01-22 Thread seedshope
Change from V1: patch 1: patch 2: Delete some compile information from commit. patch 3: Add LED modify information and Delete some compile information from commit. patch 4: Add new patch for SDRAM init. Change from v2: patch2: Modify Makefile for arch/arm/cpu/arm1176/s3c64xx/cpu_init.s in build

[U-Boot] [v5 patch 1/6] SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined

2011-01-22 Thread seedshope
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: Zhong Hongbo bocui...@gmail.com 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

[U-Boot] [v5 patch 2/6] SMDK6400: Fix some label undefined in build error

2011-01-22 Thread seedshope
Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u-boot-nand.lds. So add some label form u-boot.lds to u-boot-nand.lds Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git

[U-Boot] [v5 patch 3/6] SMDK6400: Fix the mutiple link error

2011-01-22 Thread seedshope
The first, the cpu_init.o have already been link for cmd_link_o_target atfer compile, But, The link script re-link the point file. So the link machine will generate multiple definition error information. The second, Since the first 4kB of nand boot featue code move to nand_spl, So It is not

[U-Boot] [v5 patch 4/6] SMDK6400: Add some labels to u-boot.lds to support nand_spl

2011-01-22 Thread seedshope
In the nand_spl feature of SMDK6400. Add some relocation symbols to nand_spl/board/samsung/smdk6400/u-boot.lds to fix the compile error. Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds index

[U-Boot] [v5 patch 5/6] SMDK6400: Disable LED function in start.s on the nand booting

2011-01-22 Thread seedshope
Since nand boot have some limit for the first 4KB, We only disable the LED function to reduce the code space. At the same time, Fix the compile error for LED function undefined in the compile time of nand_spl. Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git

[U-Boot] [v5 patch 6/6] SMDK6400: Fixup dram_init for relocation support

2011-01-22 Thread seedshope
Signed-off-by: Zhong Hongbo bocui...@gmail.com diff --git a/board/samsung/smdk6400/smdk6400.c b/board/samsung/smdk6400/smdk6400.c index 35aa40b..13c7ed5 100644 --- a/board/samsung/smdk6400/smdk6400.c +++ b/board/samsung/smdk6400/smdk6400.c @@ -78,10 +78,16 @@ int board_init(void) return

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-22 Thread seedshope
On 01/23/2011 04:28 AM, Albert ARIBAUD wrote: Hi seedshope, Le 22/01/2011 20:23, seedshope a écrit : Hi Amicalement That's Albert, actually. :) I check my patch 6 on the http://news.gmane.org/gmane.comp.boot-loaders.u-boot, It look fine. I have a bit despondent. Why do you think it has

[U-Boot] v4 patch:SMDK6400: Fix some build bug

2011-01-21 Thread seedshope
Change from V1: patch 1: patch 2: Delete some compile information from commit. patch 3: Add LED modify information and Delete some compile information from commit. patch 4: Add new patch for SDRAM init. Change from v2: patch2: Modify Makefile for arch/arm/cpu/arm1176/s3c64xx/cpu_init.s in build

[U-Boot] [v4 patch 2/6] SMDK6400: Fix some label undefined in build error

2011-01-21 Thread seedshope
Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u-boot-nand.lds. So add some label form u-boot.lds to u-boot-nand.lds Signed-off-by: seedshope bocui...@gmail.com --- board/samsung

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

2011-01-21 Thread seedshope
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: seedshope bocui...@gmail.com --- include/configs/smdk6400.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h index 671f2c7..c9acf58 100644 --- a/include

[U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-21 Thread seedshope
Since SDRAM init function have already change, So the SDRAM initial function must be change. Signed-off-by: seedshope bocui...@gmail.com --- board/samsung/smdk6400/smdk6400.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/board/samsung/smdk6400/smdk6400.c b

[U-Boot] [v4 patch 5/6] SMDK6400: Disable LED function in start.s on the nand booting

2011-01-21 Thread seedshope
Since nand boot have some limit for the first 4KB, We only disable the LED function to reduce the code space. At the same time, Fix the compile error for LED function undefined in the compile time of nand_spl. Signed-off-by: seedshope bocui...@gmail.com --- arch/arm/cpu/arm1176/start.S |2

Re: [U-Boot] [PATCH V4 1/4] arm: Tegra2: Add basic NVIDIA Tegra2 SoC support

2011-01-21 Thread seedshope
new file mode 100644 index 000..5e60bd8 --- /dev/null +++ b/arch/arm/cpu/armv7/tegra2/uart.c How about move it to drivers/serial/ ? Approve, you can use name in the drivers/serial. such as: serial_tegra2.c Thanks seedshope There's Tegra-specific code in there (clocks, PLLs and pinmuxes

Re: [U-Boot] [PATCH V4 1/4] arm: Tegra2: Add basic NVIDIA Tegra2 SoC support

2011-01-21 Thread seedshope
+ if (uart_num == UART_A) { above. Thanks seedshope + uart_ctlr *const uart = (uart_ctlr *)NV_PA_APB_UARTA_BASE; + + uart_clock_init(UART_A); + + /* Enable UARTA - uses config 0 */ + pin_mux_uart(UART_A); + + setup_uart(uart

Re: [U-Boot] [PATCH V4 1/4] arm: Tegra2: Add basic NVIDIA Tegra2 SoC support

2011-01-21 Thread seedshope
On 01/22/2011 12:35 AM, seedshope wrote: On 01/21/2011 08:42 AM, Tom Warren wrote: + +enum { +UART_A = 1, +UART_B, +UART_C, +UART_D, +UART_E +}; + +#endif /* _BOARD_H_ */ diff --git a/arch/arm/cpu/armv7/tegra2/uart.c b/arch/arm/cpu/armv7/tegra2/uart.c new file

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-21 Thread seedshope
On 01/22/2011 01:52 AM, Sergei Shtylyov wrote: Hello. seedshope wrote: Since SDRAM init function have already change, So the SDRAM initial function must be change. This description sounds somewhat tautological... If I describe as following: Since SDRAM init function have already change

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-21 Thread seedshope
On 01/22/2011 02:05 AM, seedshope wrote: On 01/22/2011 01:52 AM, Sergei Shtylyov wrote: Hello. seedshope wrote: Since SDRAM init function have already change, So the SDRAM initial function must be change. This description sounds somewhat tautological... If I describe as following

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-21 Thread seedshope
On 01/22/2011 02:29 AM, Albert ARIBAUD wrote: Le 21/01/2011 19:15, seedshope a écrit : On 01/22/2011 02:05 AM, seedshope wrote: On 01/22/2011 01:52 AM, Sergei Shtylyov wrote: Hello. seedshope wrote: Since SDRAM init function have already change, So the SDRAM initial function must

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

2011-01-21 Thread seedshope
On 01/22/2011 04:42 AM, Wolfgang Denk wrote: Dear seedshope, In message1295624053-8060-2-git-send-email-bocui...@gmail.com you wrote: Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: seedshopebocui...@gmail.com I'm sorry, but please consider all your patches rejected unless you

Re: [U-Boot] [v4 patch 6/6] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-21 Thread seedshope
On 01/22/2011 03:11 AM, Albert ARIBAUD wrote: Le 21/01/2011 19:43, seedshope a écrit : On 01/22/2011 02:29 AM, Albert ARIBAUD wrote: Le 21/01/2011 19:15, seedshope a écrit : On 01/22/2011 02:05 AM, seedshope wrote: On 01/22/2011 01:52 AM, Sergei Shtylyov wrote: Hello. seedshope wrote

Re: [U-Boot] [PATCH v2 2/2] armv7: add support for s5pc210 universal board

2011-01-20 Thread seedshope
GENERATED_GBL_DATA_SIZE. Thanks, seedshope + +#endif /* __CONFIG_H */ ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [V2 patch 3/4] SMDK6400: Fix build error for nand_spl support

2011-01-19 Thread seedshope
On 01/19/2011 05:56 AM, Wolfgang Denk wrote: Dear seedshope, In message1294757545-4771-4-git-send-email-bocui...@gmail.com you wrote: Add some relocation symbols to u-boot.lds and disable LED functions in start.s to support nand_spl. Signed-off-by: seedshopebocui...@gmail.com Please re

Re: [U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-19 Thread seedshope
On 01/15/2011 02:15 AM, Albert ARIBAUD wrote: Le 14/01/2011 17:56, seedshope a écrit : On 01/15/2011 12:39 AM, Albert ARIBAUD wrote: Hi seedshope, Le 14/01/2011 16:45, seedshope a écrit : On 01/14/2011 02:07 AM, Albert ARIBAUD wrote: Le 13/01/2011 14:36, seedshope a écrit : Modify Makefile

Re: [U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-14 Thread seedshope
On 01/14/2011 02:07 AM, Albert ARIBAUD wrote: Le 13/01/2011 14:36, seedshope a écrit : Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u-boot-nand.lds. So add some label form u

Re: [U-Boot] [v3 patch 4/4] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-14 Thread seedshope
On 01/14/2011 08:53 AM, Minkyu Kang wrote: Dear seedshope, On 13 January 2011 22:36, seedshopebocui...@gmail.com wrote: Since SDRAM init function have already change, So the SDRAM initial function must be change. Signed-off-by: seedshopebocui...@gmail.com diff --git a/board/samsung

Re: [U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-14 Thread seedshope
On 01/14/2011 11:45 PM, seedshope wrote: On 01/14/2011 02:07 AM, Albert ARIBAUD wrote: Le 13/01/2011 14:36, seedshope a écrit : Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u

Re: [U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-14 Thread seedshope
On 01/15/2011 12:39 AM, Albert ARIBAUD wrote: Hi seedshope, Le 14/01/2011 16:45, seedshope a écrit : On 01/14/2011 02:07 AM, Albert ARIBAUD wrote: Le 13/01/2011 14:36, seedshope a écrit : Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu

Re: [U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-14 Thread seedshope
On 01/15/2011 02:15 AM, Albert ARIBAUD wrote: Le 14/01/2011 17:56, seedshope a écrit : On 01/15/2011 12:39 AM, Albert ARIBAUD wrote: Hi seedshope, Le 14/01/2011 16:45, seedshope a écrit : On 01/14/2011 02:07 AM, Albert ARIBAUD wrote: Le 13/01/2011 14:36, seedshope a écrit : Modify Makefile

[U-Boot] RR v3 PATCH: SMDK6400 Fix some build bug

2011-01-13 Thread seedshope
Change from V1: patch 1: patch 2: Delete some compile information from commit. patch 3: Add LED modify information and Delete some compile information from commit. patch 4: Add new patch for SDRAM init. Change frome v2: patch2: Modify Makefile for arch/arm/cpu/arm1176/s3c64xx/cpu_init.s in

[U-Boot] [v3 patch 1/4] SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined

2011-01-13 Thread seedshope
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: seedshope bocui...@gmail.com 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

[U-Boot] [v3 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-13 Thread seedshope
Modify Makefile for cpu_init.c and Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u-boot-nand.lds. So add some label form u-boot.lds to u-boot-nand.lds Signed-off-by: seedshope bocui...@gmail.com diff --git a/arch

[U-Boot] [v3 patch 3/4] SMDK6400: Fix build error for nand_spl support

2011-01-13 Thread seedshope
Add some relocation symbols to u-boot.lds and disable LED functions in start.s to support nand_spl. Signed-off-by: seedshope bocui...@gmail.com diff --git a/arch/arm/cpu/arm1176/start.S b/arch/arm/cpu/arm1176/start.S index 237dcfe..ae3706a 100644 --- a/arch/arm/cpu/arm1176/start.S +++ b/arch/arm

[U-Boot] [v3 patch 4/4] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-13 Thread seedshope
Since SDRAM init function have already change, So the SDRAM initial function must be change. Signed-off-by: seedshope bocui...@gmail.com diff --git a/board/samsung/smdk6400/smdk6400.c b/board/samsung/smdk6400/smdk6400.c index 35aa40b..043d553 100644 --- a/board/samsung/smdk6400/smdk6400.c +++ b

Re: [U-Boot] [V2 patch 4/4] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-12 Thread seedshope
On 01/12/2011 07:08 PM, Sergei Shtylyov wrote: Hello. On 11-01-2011 17:52, seedshope wrote: Since SDRAM init function have already change, So the SDRAM initial function must be change. Signed-off-by: seedshopebocui...@gmail.com diff --git a/board/samsung/smdk6400/smdk6400.c b/board

[U-Boot] RR v2 PATCH: SMDK6400 Fix some build bug

2011-01-11 Thread seedshope
Subject: RR v2 PATCH: SMDK6400 Fix some build bug Change from V1: patch 1: patch 2: Delete some compile information from commit. patch 3: Add LED modify information and Delete some compile information from commit. patch 4: Add new patch for SDRAM init.

[U-Boot] [V2 patch 1/4] SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined

2011-01-11 Thread seedshope
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: seedshope bocui...@gmail.com 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

[U-Boot] [V2 patch 2/4] SMDK6400: Fix some label undefined in build error

2011-01-11 Thread seedshope
Start.s use some label,this defined u-boot.lds of arch/arm/cpu/arm1176. But SMDK6400 use the link script board/samsung/smdk6400/u-boot-nand.lds. So add some label form u-boot.lds to u-boot-nand.lds Signed-off-by: seedshope bocui...@gmail.com diff --git a/board/samsung/smdk6400/u-boot-nand.lds b

[U-Boot] [V2 patch 4/4] SMDK6400: Fix SMDK6400 SDRAM init

2011-01-11 Thread seedshope
Since SDRAM init function have already change, So the SDRAM initial function must be change. Signed-off-by: seedshope bocui...@gmail.com diff --git a/board/samsung/smdk6400/smdk6400.c b/board/samsung/smdk6400/smdk6400.c index 35aa40b..52b44a8 100644 --- a/board/samsung/smdk6400/smdk6400.c +++ b

[U-Boot] [V2 patch 3/4] SMDK6400: Fix build error for nand_spl support

2011-01-11 Thread seedshope
Add some relocation symbols to u-boot.lds and disable LED functions in start.s to support nand_spl. Signed-off-by: seedshope bocui...@gmail.com diff --git a/arch/arm/cpu/arm1176/start.S b/arch/arm/cpu/arm1176/start.S index 237dcfe..ae3706a 100644 --- a/arch/arm/cpu/arm1176/start.S +++ b/arch/arm

Re: [U-Boot] [PATCH 3/3] SMDK6400: Fix build error for smdk6400 nand_spl support

2011-01-09 Thread seedshope
On 01/09/2011 03:33 PM, Minkyu Kang wrote: Hi On 9 January 2011 10:14, seedshopebocui...@gmail.com wrote: On 01/08/2011 11:15 PM, Minkyu Kang wrote: Dear seedshope, On 8 January 2011 00:53, seedshopebocui...@gmail.comwrote: From: seedshopebocui...@gmail.com Modify u-boot.lds from

Re: [U-Boot] [PATCH 3/3] SMDK6400: Fix build error for smdk6400 nand_spl support

2011-01-09 Thread seedshope
On 01/09/2011 10:12 PM, Minkyu Kang wrote: Hello, On 9 January 2011 21:27, seedshopebocui...@gmail.com wrote: On 01/09/2011 03:33 PM, Minkyu Kang wrote: Hi On 9 January 2011 10:14, seedshopebocui...@gmail.comwrote: On 01/08/2011 11:15 PM, Minkyu Kang wrote: Dear seedshope, On 8

Re: [U-Boot] [PATCH 2/3] SMDK6400:use common arm1176 u-boot.lds of cpu layer

2011-01-08 Thread seedshope
On 01/08/2011 02:04 PM, Albert ARIBAUD wrote: Le 07/01/2011 16:53, seedshope a écrit : From: seedshopebocui...@gmail.com Remove u-boot-nand.lds from board/samsung/smdk6400 and use the common u-boot.lds of arm1176 cpu layer. This patch also fix the building errors: arch/arm/cpu/arm1176

Re: [U-Boot] [PATCH 3/3] SMDK6400: Fix build error for smdk6400 nand_spl support

2011-01-08 Thread seedshope
On 01/08/2011 02:14 PM, Albert ARIBAUD wrote: Hi seedshope, Le 07/01/2011 16:53, seedshope a écrit : From: seedshopebocui...@gmail.com Modify u-boot.lds from nand_spl/board/samsung/smdk6400. You're also modifying start.S. If you mention files in the patch summary, then please mention them

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

2011-01-08 Thread seedshope
On 01/08/2011 01:55 PM, Albert ARIBAUD wrote: Le 07/01/2011 16:53, seedshope a écrit : From: seedshopebocui...@gmail.com CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM and substract the global size. Signed-off-by: seedshopebocui...@googlemail.com Please fix the From: line in all

Re: [U-Boot] [PATCH 3/3] SMDK6400: Fix build error for smdk6400 nand_spl support

2011-01-08 Thread seedshope
On 01/08/2011 11:15 PM, Minkyu Kang wrote: Dear seedshope, On 8 January 2011 00:53, seedshopebocui...@gmail.com wrote: From: seedshopebocui...@gmail.com Modify u-boot.lds from nand_spl/board/samsung/smdk6400. start.o: In function `clbss_l': nand_spl/board/samsung/smdk6400/start.S:357

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

2011-01-08 Thread seedshope
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: seedshopebocui...@gmail.com CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM and substract the global size

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

2011-01-07 Thread seedshope
From: seedshope bocui...@gmail.com CONFIG_SYS_INIT_SP_ADDR point the last PHY of IRAM and substract the global size. Signed-off-by: seedshope bocui...@googlemail.com diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h index 671f2c7..037db4f 100644 --- a/include/configs/smdk6400

[U-Boot] [PATCH 2/3] SMDK6400:use common arm1176 u-boot.lds of cpu layer

2011-01-07 Thread seedshope
From: seedshope bocui...@gmail.com Remove u-boot-nand.lds from board/samsung/smdk6400 and use the common u-boot.lds of arm1176 cpu layer. This patch also fix the building errors: arch/arm/cpu/arm1176/s3c64xx/libs3c64xx.o: In function `mem_ctrl_asm_init': arch/arm/cpu/arm1176/s3c64xx/cpu_init.S

[U-Boot] [PATCH 3/3] SMDK6400: Fix build error for smdk6400 nand_spl support

2011-01-07 Thread seedshope
From: seedshope bocui...@gmail.com Modify u-boot.lds from nand_spl/board/samsung/smdk6400. start.o: In function `clbss_l': nand_spl/board/samsung/smdk6400/start.S:357: undefined reference to `coloured_LED_init' nand_spl/board/samsung/smdk6400/start.S:358: undefined reference to `red_LED_on

Re: [U-Boot] [PATCH] S3C64XX: timer: replace bss variable by gd

2011-01-05 Thread seedshope
On 01/05/2011 03:04 PM, Minkyu Kang wrote: Dear seedshope, On 4 January 2011 23:56, seedshopebocui...@gmail.com wrote: On 01/04/2011 10:46 PM, seedshope wrote: On 01/04/2011 04:14 PM, Minkyu Kang wrote: Use the global data instead of bss variable, replace as follow. timer_load_val

Re: [U-Boot] [PATCH] S3C64XX: timer: replace bss variable by gd

2011-01-04 Thread seedshope
On 01/04/2011 04:14 PM, Minkyu Kang wrote: Use the global data instead of bss variable, replace as follow. timer_load_val - timer_rate_hz timestamp - timer_reset_value lastdec - lastinc I have already test the patch on s3c6410 . It is work perfect. Thanks, seedshope Signed-off-by: Minkyu

Re: [U-Boot] [PATCH] S3C64XX: timer: replace bss variable by gd

2011-01-04 Thread seedshope
On 01/04/2011 10:46 PM, seedshope wrote: On 01/04/2011 04:14 PM, Minkyu Kang wrote: Use the global data instead of bss variable, replace as follow. timer_load_val - timer_rate_hz timestamp - timer_reset_value lastdec - lastinc I have already test the patch on s3c6410 . It is work perfect