Re: [U-Boot] [PATCH 05/13] x86: Make CONFIG_RELOC_FIXUP_WORKS generic for all x86 boards

2010-08-22 Thread Heiko Schocher
Hello Graeme, Graeme Russ wrote: > Relocation is not board-specific fir the x86 architectrure, so > CONFIG_RELOC_FIXUP_WORKS can be defined globally in the common.h > > Signed-off-by: Graeme Russ Acked-by: Heiko Schocher > --- > arch/i386/include/asm/config.h |2 ++ > include/configs/eNET

Re: [U-Boot] [PATCH] I2C: Add support for multiple I2C busses for SNTP (effect to RTC)

2010-08-22 Thread Heiko Schocher
Hello Stephan, added Ben Warren to cc: because this is a change in net, which also falls in his area of responsibility ... Stephan Linz wrote: > This patch switches to the desired I2C bus when the SNTP > network service is called. This can be configured using the > CONFIG_SYS_RTC_BUS_NUM define.

Re: [U-Boot] [PATCH] S5P: mmc: fix the mmc offset

2010-08-22 Thread Minkyu Kang
On 20 August 2010 18:12, Minkyu Kang wrote: > This patch fixed the size of mmc structure. > > Signed-off-by: Minkyu Kang > --- >  arch/arm/include/asm/arch-s5pc1xx/mmc.h |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) > applied to u-boot-samsung -- from. prom. www.promsoft.net ___

Re: [U-Boot] [PATCH 2/2 v2] ARMV7: S5P: rename from s5pc1xx to s5p

2010-08-22 Thread Minkyu Kang
On 20 August 2010 14:11, Minkyu Kang wrote: > Because of these are common files around s5p Socs, rename from s5pc1xx to s5p. > And getting cpu_id is SoC specific, so move to SoC's header file. > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > --- > v2: moves read funcion also to s5

Re: [U-Boot] [PATCH 1/2 v2] ARMV7: S5P: make s5p-common for sharing the code between s5pc1xx and s5pc2xx

2010-08-22 Thread Minkyu Kang
On 20 August 2010 14:11, Minkyu Kang wrote: > This patch adds basic support for s5pc210. > s5p-common will be used by all of s5p SoCs. > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > --- > v2: no change > >  Makefile                                 |    7 + >  arch/arm/cpu/armv7/

Re: [U-Boot] samsung s3c2440 support

2010-08-22 Thread Minkyu Kang
Dear Craig Nauman, On 20 August 2010 01:39, C Nauman wrote: > What is the status of support for the samsung s3c2440 in mainline u-boot? > > I have seen patches in the the mailing list archive from 2009 but they > don't appear to have been applied yet. > I remember that Kevin was working on it. B

[U-Boot] Pull request: u-boot-i2c

2010-08-22 Thread Heiko Schocher
Hello Wolfgang, The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854: Wolfgang Denk (1): Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master are available in the git repository at: git://git.denx.de/u-boot-i2c.git master Nishanth Menon (3): i

Re: [U-Boot] [PATCH] hmi1001, mucmc52, uc100, uc101: move boards to vendor directory

2010-08-22 Thread Heiko Schocher
Hallo Wolfgang, Wolfgang Denk wrote: > Signed-off-by: Wolfgang Denk > Cc: Heiko Schocher > Cc: Stefan Roese > Cc: Roderik Wildenburg Acked-by: Heiko Schocher Thanks. bye, Heiko -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5,

Re: [U-Boot] [PATCH v2] [TESTING] da8xx: fixup ARM relocation support

2010-08-22 Thread Heiko Schocher
Hello Ben, Ben Gardiner wrote: > Split the existing dram_init for da8xx when ARM reloc is enabled, like the > changes to arch/arm/cpu/arm926ejs/orion5x/dram.c in > 0f234d263b17ccf1b8fd776eb8c15b7cdb27a887 by Heiko Schocher . > > Without these changes gd->ram_size is '0' which leads to incorrect r

Re: [U-Boot] [PATCH 1/2] UEC: Don't udelay needlessly

2010-08-22 Thread Ben Warren
Hi Joakim, On Wednesday, August 18, 2010, Joakim Tjernlund wrote: >> >> On Wed, 11 Aug 2010 11:44:21 +0200 >> Joakim Tjernlund wrote: >> >> > uec_init() adds an udelay(10) even though >> > the PHY status read went well, don't do that. >> > >> > Signed-off-by: Joakim Tjernlund >> > --- >> Ac

Re: [U-Boot] u-boot-x86

2010-08-22 Thread Robert Schwebel
On Sat, Aug 21, 2010 at 11:42:31AM +1000, Graeme Russ wrote: > It sounds like you might be looking at using U-Boot for booting a x86 > PC. If this is the case, maybe you should take a look at coreboot > (http://www.coreboot.org/) For what it's worth: we have a beginning of x86 support in Barebox

[U-Boot] [PATCH 12/13] eNET: Fix eNET Interrupt Setup for Linux

2010-08-22 Thread Graeme Russ
Fix minor issues with the configuration of the hardware interrupts for Linux when booting the eNET board Signed-off-by: Graeme Russ --- board/eNET/eNET.c | 15 +-- 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/board/eNET/eNET.c b/board/eNET/eNET.c index 7f0e257..70

[U-Boot] [PATCH 05/13] x86: Make CONFIG_RELOC_FIXUP_WORKS generic for all x86 boards

2010-08-22 Thread Graeme Russ
Relocation is not board-specific fir the x86 architectrure, so CONFIG_RELOC_FIXUP_WORKS can be defined globally in the common.h Signed-off-by: Graeme Russ --- arch/i386/include/asm/config.h |2 ++ include/configs/eNET.h |2 -- 2 files changed, 2 insertions(+), 2 deletions(-) dif

[U-Boot] [PATCH 10/13] x86: Coding Style Cleanup

2010-08-22 Thread Graeme Russ
Perform some basic code cleanups of the x86 files Signed-off-by: Graeme Russ --- arch/i386/cpu/sc520/sc520.c | 54 ++-- arch/i386/cpu/sc520/sc520_asm.S | 642 +++ arch/i386/cpu/start.S | 30 +- arch/i386/cpu/start16.S |9 +- 4 fi

[U-Boot] [PATCH 07/13] x86: zboot update

2010-08-22 Thread Graeme Russ
The header of recent Linux Kernels includes the size of the image, and therefore is not needed to be passed to zboot. Still process the third parameter (size of image) in the event that an older kernel is being loaded Signed-off-by: Graeme Russ --- arch/i386/lib/zimage.c | 18 +

[U-Boot] [PATCH 13/13] x86: Add RTC support to eNET

2010-08-22 Thread Graeme Russ
The SC520 has an inbuilt MC146818 - Enable it for the eNET board Signed-off-by: Graeme Russ --- drivers/rtc/mc146818.c |6 ++ include/configs/eNET.h |2 ++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/rtc/mc146818.c b/drivers/rtc/mc146818.c index ac4eb6a..15

[U-Boot] [PATCH 11/13] eNET: Add eNET_RAM_config

2010-08-22 Thread Graeme Russ
This patch allows configuration of the eNET board for generation of a U-Boot image which can be loaded into RAM (using tftp for example). Executing the image loaded into RAM is very similar to a cold-boot (the image is relocated to upper memory etc). This allows very rapid development and testing o

[U-Boot] [PATCH 09/13] x86: Move loading of GTD to C code

2010-08-22 Thread Graeme Russ
Linux has C macros and code to load the GTD after switching to Protected Mode. Using these greatly simplifies the assembler code Signed-off-by: Graeme Russ --- arch/i386/cpu/cpu.c | 57 + arch/i386/cpu/start.S | 96 ---

[U-Boot] [PATCH 08/13] x86: use gc sections to reduce image size

2010-08-22 Thread Graeme Russ
Follow the discussion of Charles Manning and Mike Frysinger. Using gc_sections helps reduce image size. Signed-off-by: Graeme Russ --- arch/i386/config.mk |3 +++ board/eNET/u-boot.lds | 10 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/i386/config.mk b/a

[U-Boot] [PATCH 06/13] x86: Use TEXT_BASE in linker scripts

2010-08-22 Thread Graeme Russ
Use TEXT_BASE rather than a hard-coded base address on x86 linker scripts. This will allow any board to define its base link address without having to modify the linker script Signed-off-by: Graeme Russ --- board/eNET/u-boot.lds |8 1 files changed, 4 insertions(+), 4 deletions(-)

[U-Boot] [PATCH 03/13] x86: Fix x86 Cold Boot

2010-08-22 Thread Graeme Russ
Commit 077e1958ca4afe12d88043b123ded058c51b89f7 broke the ability of the x86 port to boot from a cold-reset by removing the initial IDT. Re- instate the initial IDT to allow cold-booting of x86 boards Signed-off-by: Graeme Russ --- arch/i386/cpu/start16.S |5 + 1 files changed, 5 inserti

[U-Boot] [PATCH 02/13] x86: Add do_bdinfo()

2010-08-22 Thread Graeme Russ
x86 failed to compile with a message "a case for this architecture does not exist!" - Add do_bdinfo() for this arch Signed-off-by: Graeme Russ --- common/cmd_bdinfo.c | 48 +--- 1 files changed, 45 insertions(+), 3 deletions(-) diff --git a/common/c

[U-Boot] [PATCH 01/13] x86: Fix do_go_exec() - const argv[]

2010-08-22 Thread Graeme Russ
Commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934 made the argv parameter to do_go_exec() const but did not allow for the fact that argv[-1] is set to point to the global data structure and relies on argv being non- const. With this patch, do_go_exec() creates a new copy of the argv array with an ex

[U-Boot] [PATCH 00/13] x86: Various Patches

2010-08-22 Thread Graeme Russ
This is a patch-series I intend to apply to the x86 repository ready for the next merge window. Patches 1 & 2 are fixes for build breakages caused by non-x86 mainline patches Patch 3 fixes a cold-boot breakage Patch 4 removes unmaintained boards Patch 5 Is a trivial change suggested by Heiko Sc