Re: [U-Boot] ARM ld: .bss overlaps section .rel.dyn

2012-02-05 Thread Amit Virdi
Albert, On Sat, Feb 4, 2012 at 8:35 AM, viresh kumar viresh.li...@gmail.com wrote: On Fri, Feb 3, 2012 at 10:24 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: On 2/1/12, Amit Virdiamitvi...@gmail.com wrote: I'm in the process of updating platform support for spear series of SoC on

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Marek Vasut
On Sunday 05 February 2012 01:44:19 Simon Glass wrote: This permits disabling the code relation in U-Boot which is useful when debugging with an ICE. To use it define CONFIG_SYS_SKIP_ARM_RELOCATION in your board. any reason for ARM in there ? Because this is only for ARM? M

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Marek Vasut
This permits disabling the code relation in U-Boot which is useful when debugging with an ICE. To use it define CONFIG_SYS_SKIP_ARM_RELOCATION in your board. Signed-off-by: Simon Glass s...@chromium.org --- arch/arm/config.mk |2 ++ arch/arm/cpu/armv7/start.S

Re: [U-Boot] ARM ld: .bss overlaps section .rel.dyn

2012-02-05 Thread Albert ARIBAUD
Hi Amit, Le 05/02/2012 12:29, Amit Virdi a écrit : Albert, On Sat, Feb 4, 2012 at 8:35 AM, viresh kumarviresh.li...@gmail.com wrote: On Fri, Feb 3, 2012 at 10:24 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: On 2/1/12, Amit Virdiamitvi...@gmail.com wrote: I'm in the process of

Re: [U-Boot] [PATCH 2/2] RFC: Let linker create phy array

2012-02-05 Thread Albert ARIBAUD
Hi Mike, Le 05/02/2012 04:38, Mike Frysinger a écrit : On Saturday 04 February 2012 22:02:46 Troy Kisky wrote: --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c -static struct phy_driver BCM5461S_driver = { +struct phy_driver BCM5461S_driver __phy_entry = { why do you have

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx

2012-02-05 Thread Stefano Babic
On 04/02/2012 17:57, Albert ARIBAUD wrote: Hi Stefano, Hi Albert, Do you want me to ignore these and honor the initial 11-commit pull request, or would you prefer to issue an [UPDATE] pull req for the whole 16 commits? I send yaou an update pull req, thanks. Stefano --

Re: [U-Boot] [UPDATED] Pull request: u-boot-imx

2012-02-05 Thread Stefano Babic
Hi Albert, I have updated my pull request: The following changes since commit 778a2c5f846b1d0b78152747af96bcd0ca04e562: arm, davinci: cam_enc_4xx board updates (2012-02-02 10:54:37 -0700) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master Dirk Behme (4):

Re: [U-Boot] Avoiding reload on ARM U-BOOT

2012-02-05 Thread Marek Vasut
Hello again Sorry for slipping the u-boot list e-mail address i understand the benefit of relocating u-boot to the end of DRAM but in systems where boot time is critical this redundant copy is undesirable. anyway i understand there is no official way of avoiding it. You can boot linux

[U-Boot] [PATCH V7] mcx: support for HTKW mcx board

2012-02-05 Thread Stefano Babic
From: Ilya Yanok ya...@emcraft.com This patch adds support for the HTKW mcx AM3517-based board. Serial, Ethernet, NAND, MMC, RTC, EHCI USB host and both NAND and MMC SPLs are supported. Signed-off-by: Ilya Yanok ya...@emcraft.com Signed-off-by: Stefano Babic sba...@denx.de CC: Tom Rini

Re: [U-Boot] Avoiding reload on ARM U-BOOT

2012-02-05 Thread Stefano Babic
On 05/02/2012 15:22, Marek Vasut wrote: Hello again Sorry for slipping the u-boot list e-mail address i understand the benefit of relocating u-boot to the end of DRAM but in systems where boot time is critical this redundant copy is undesirable. anyway i understand there is no official way

Re: [U-Boot] ARM ld: .bss overlaps section .rel.dyn

2012-02-05 Thread Amit Virdi
Albert, Definitely a toolchain setting somewhere, and one that has disappeared in CS two years ago. Amicalement, -- Albert. Thanks a lot. Now I have got specific direction. Best Regards Amit Virdi ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Wolfgang Denk
Dear Simon Glass, In message 1328424259-12914-1-git-send-email-...@chromium.org you wrote: This permits disabling the code relation in U-Boot which is useful when debugging with an ICE. To use it define CONFIG_SYS_SKIP_ARM_RELOCATION in your board. Signed-off-by: Simon Glass

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Mike Frysinger
On Sunday 05 February 2012 07:05:13 Marek Vasut wrote: On Sunday 05 February 2012 01:44:19 Simon Glass wrote: This permits disabling the code relation in U-Boot which is useful when debugging with an ICE. To use it define CONFIG_SYS_SKIP_ARM_RELOCATION in your board. any reason

Re: [U-Boot] [PATCH 2/2] RFC: Let linker create phy array

2012-02-05 Thread Mike Frysinger
On Sunday 05 February 2012 08:26:57 Albert ARIBAUD wrote: Le 05/02/2012 04:38, Mike Frysinger a écrit : On Saturday 04 February 2012 22:02:46 Troy Kisky wrote: --- a/include/phy.h +++ b/include/phy.h +extern struct phy_driver __phy_entry_start, __phy_entry_end; linker symbols

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Mike Frysinger
On Saturday 04 February 2012 22:02:45 Troy Kisky wrote: arch/blackfin/cpu/u-boot.lds is warranted. yes, this change will break Blackfin boards for sure --- a/arch/blackfin/cpu/u-boot.lds +++ b/arch/blackfin/cpu/u-boot.lds MEMORY { #if CONFIG_MEM_SIZE - ram : ORIGIN =

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Simon Glass
Hi Mike, Wolfgang, On Sun, Feb 5, 2012 at 12:38 PM, Mike Frysinger vap...@gentoo.org wrote: On Sunday 05 February 2012 07:05:13 Marek Vasut wrote: On Sunday 05 February 2012 01:44:19 Simon Glass wrote: This permits disabling the code relation in U-Boot which is useful when debugging with

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Graeme Russ
Hi Mike, On Mon, Feb 6, 2012 at 8:01 AM, Mike Frysinger vap...@gentoo.org wrote: On Saturday 04 February 2012 22:02:45 Troy Kisky wrote: since we preprocess our linker scripts now, i'd suggest using #include rather than INCLUDE +1 --- /dev/null +++ b/u-boot-common.lds +     . =

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Wolfgang Denk
Dear Simon Glass, In message capnjgz2z0ojdlhz6yd5uuwru7pmjbleoghzhk7rwgwk46xx...@mail.gmail.com you wrote: This patch shows how to do this sort of thing on ARM. I would like to see this feature in mainline, but it makes more sense to do it properly if/when generic relocation is in. Then it

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Graeme Russ
Hi Wolfgang, Simon, On Mon, Feb 6, 2012 at 9:44 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message capnjgz2z0ojdlhz6yd5uuwru7pmjbleoghzhk7rwgwk46xx...@mail.gmail.com you wrote: This patch shows how to do this sort of thing on ARM. I would like to see this feature in

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Simon Glass
Hi Wolfgang, On Sun, Feb 5, 2012 at 2:44 PM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message capnjgz2z0ojdlhz6yd5uuwru7pmjbleoghzhk7rwgwk46xx...@mail.gmail.com you wrote: This patch shows how to do this sort of thing on ARM. I would like to see this feature in mainline,

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Simon Glass
Hi Graeme, On Sun, Feb 5, 2012 at 3:23 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Wolfgang, Simon, On Mon, Feb 6, 2012 at 9:44 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message capnjgz2z0ojdlhz6yd5uuwru7pmjbleoghzhk7rwgwk46xx...@mail.gmail.com you wrote: This

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Graeme Russ
Hi Simon On Mon, Feb 6, 2012 at 10:32 AM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Sun, Feb 5, 2012 at 3:23 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Wolfgang, Simon, On Mon, Feb 6, 2012 at 9:44 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Simon Glass
Hi Graeme, On Sun, Feb 5, 2012 at 3:37 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon On Mon, Feb 6, 2012 at 10:32 AM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Sun, Feb 5, 2012 at 3:23 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Wolfgang, Simon, On Mon, Feb 6, 2012

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Graeme Russ
Hi Simon, On Mon, Feb 6, 2012 at 10:41 AM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Sun, Feb 5, 2012 at 3:37 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon [snip] Sorry for the dealy, but hopefully I'll have it all sorted by the end of the week OK thanks for the

Re: [U-Boot] [PING] Re: [PATCH] ARM: activate DISPLAY_CPUINFO for VCMA9 + SMDK2410 board

2012-02-05 Thread Minkyu Kang
On 4 February 2012 04:43, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi David, Le 09/01/2012 08:23, David Müller (ELSOFT AG) a écrit : Hello Any news? Adding Minkyu. Amicalement, -- Albert. Acked-by: Minkyu Kang mk7.k...@samsung.com Thanks Minkyu Kang. -- from. prom.

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Mike Frysinger
On Sunday 05 February 2012 17:07:41 Graeme Russ wrote: On Mon, Feb 6, 2012 at 8:01 AM, Mike Frysinger wrote: On Saturday 04 February 2012 22:02:45 Troy Kisky wrote: --- /dev/null +++ b/u-boot-common.lds + . = ALIGN(4); + __u_boot_cmd_start = .; + .u_boot_cmd : { +

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Graeme Russ
Hi Mike, On Mon, Feb 6, 2012 at 2:24 PM, Mike Frysinger vap...@gentoo.org wrote: On Sunday 05 February 2012 17:07:41 Graeme Russ wrote: On Mon, Feb 6, 2012 at 8:01 AM, Mike Frysinger wrote: On Saturday 04 February 2012 22:02:45 Troy Kisky wrote: --- /dev/null +++ b/u-boot-common.lds +

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Mike Frysinger
On Sunday 05 February 2012 22:43:33 Graeme Russ wrote: On Mon, Feb 6, 2012 at 2:24 PM, Mike Frysinger wrote: it isn't just that. i don't think a single u-boot.lds for every arch is feasible. the kernel method allows all the common pieces to be in a common header, and then the arches to

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Graeme Russ
Hi Mike, On Mon, Feb 6, 2012 at 3:27 PM, Mike Frysinger vap...@gentoo.org wrote: On Sunday 05 February 2012 22:43:33 Graeme Russ wrote: On Mon, Feb 6, 2012 at 2:24 PM, Mike Frysinger wrote: it isn't just that.  i don't think a single u-boot.lds for every arch is feasible.  the kernel method

Re: [U-Boot] flash post test

2012-02-05 Thread vaibhav kothari
hi albert Yes,actually there is already support of flash test in POST of latest uboot.They are testing flash on every power on so am I for my board.But i don't want to disturb sectors in which uboot code relies. Can you help me here? On Sat, Feb 4, 2012 at 3:02 AM, Albert ARIBAUD

Re: [U-Boot] [PATCH 0/2] da850evm: add board specific functions

2012-02-05 Thread Hadli, Manjunath
Christian, On Thu, Feb 02, 2012 at 19:56:45, Christian Riesch wrote: Hi, Thank you for re-submitting the patchset! On Thu, Feb 2, 2012 at 2:42 PM, Manjunath Hadli manjunath.ha...@ti.com wrote: There are two da850 SOC based EVMs, one from Spectrum digital and other from Logic PD.

Re: [U-Boot] [PATCH 1/2] RFC: create u-boot-common.lds

2012-02-05 Thread Mike Frysinger
On Sunday 05 February 2012 23:34:27 Graeme Russ wrote: On Mon, Feb 6, 2012 at 3:27 PM, Mike Frysinger wrote: On Sunday 05 February 2012 22:43:33 Graeme Russ wrote: On Mon, Feb 6, 2012 at 2:24 PM, Mike Frysinger wrote: it isn't just that. i don't think a single u-boot.lds for every arch

Re: [U-Boot] [PATCH] TRATS: set gpio of UART correctly

2012-02-05 Thread Minkyu Kang
On 26 January 2012 20:21, Minkyu Kang mk7.k...@samsung.com wrote: Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com Cc: Chander Kashyap chander.kash...@linaro.org ---  board/samsung/trats/trats.c |   18 +++---  1 files changed,

Re: [U-Boot] [PATCH v8 4/4] EXYNOS: SMDK5250: Add MMC SPL support

2012-02-05 Thread Chander Kashyap
Hi, As there are no changes in other patches. So is it fine to only send this patch. On 4 February 2012 01:01, Mike Frysinger vap...@gentoo.org wrote: On Friday 03 February 2012 11:05:57 Chander Kashyap wrote:  board/samsung/smdk5250/tools/mkexynos_image.c |  117  create mode 100644

Re: [U-Boot] [PATCH] sh: i2c: Add support I2C controller of SH7734

2012-02-05 Thread Heiko Schocher
Hello Nobuhiro, Nobuhiro Iwamatsu wrote: Renesas SH7734 has two I2C interfaceis. This supports these I2C. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- drivers/i2c/Makefile|1 + drivers/i2c/sh_sh7734_i2c.c | 468

Re: [U-Boot] [PATCH v2 18/20] tegra: i2c: Add function to find DVC bus

2012-02-05 Thread Heiko Schocher
Hello Simon, Simon Glass wrote: Hi Heiko, On Jan 14, 2012 11:28 PM, Heiko Schocher h...@denx.de wrote: Hello Simon, Simon Glass wrote: Add tegra_i2c_get_dvc_bus_num() to obtain the I2C bus number of DVC bus. This allows us to talk to the PMU. Signed-off-by: Simon Glass

Re: [U-Boot] [PATCH] arm: Add option to disable code relocation

2012-02-05 Thread Wolfgang Denk
Dear Graeme Russ, In message CALButC+==qgs5eaahtqqu4zejqvg-3187ewaqu-fv3dwp5q...@mail.gmail.com you wrote: I think the immediate focus should be on centralising the init sequence processing into /common/init.c and then bringing the new'initcall' architecture online Agreed. Once these