[U-Boot] [PATCH] arm, bootm: Fix compile warning

2010-10-24 Thread Heiko Schocher
Fix warning: bootm.c: In function 'bootm_linux_fdt': bootm.c:181: warning: unused variable 's' bootm.c:180: warning: unused variable 'bd' Signed-off-by: Heiko Schocher --- arch/arm/lib/bootm.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/lib/bootm.c b/arch/

Re: [U-Boot] [PATCH] arm1176: fix relocation

2010-10-24 Thread Heiko Schocher
Hello Darius, Darius Augulis wrote: > Fix relocation code for arm1176, do it like other ARM > CPU's are doing. > Tested only with CONFIG_SKIP_RELOCATE_UBOOT defined > and using nand_spl (booting from nand). Test done on > s3c6410 based board (not yet supported in main line). > > Signed-off-by: Da

Re: [U-Boot] [PATCH v3] ARM: Use consistent assembler syntax

2010-10-24 Thread Heiko Schocher
Hello Gray, Gray Remlin wrote: > Signed-off-by: Gray Remlin > --- > Patch V3 Subject line correction change to patch v2 from > "arm926ejs: Fix two occurrences of illegal syntax assembler instructions" > originally used in patch v1, as it now impacts more than one CPU type. Tested on the bea

Re: [U-Boot] [PATCH] ARM: use the same branch insn on all architectures

2010-10-24 Thread Heiko Schocher
Hello Wolfgang, Wolfgang Denk wrote: > For the "fixloop" implementation in start.S a number of different > instructions was used. Unify code so all architectures use "blo" > here because it is more robust in case of incorrect alignments. > > Signed-off-by: Wolfgang Denk > Cc: Albert ARIBAUD >

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

2010-10-24 Thread Heiko Schocher
Hello Wolfgang, The following changes since commit fff6ec382c139eb242bd85356e66a0bc43becb63: Fix building for 83xx boards with USB support (2010-10-21 20:00:41 +0200) are available in the git repository at: git://git.denx.de/u-boot-i2c.git master Steve Sakoman (1): ARMV7: OMAP: I2C dr

Re: [U-Boot] [PATCH] ARMV7: OMAP: I2C driver: Fix bug found in 37XX testing

2010-10-24 Thread Heiko Schocher
Hello Steve, Steve Sakoman wrote: > On OMAP36/37XX the standard on chip pullups are not sufficient to > ensure proper i2c operation without external pullups or switching > to high speed mode and enabling special on chip pullups. > > This is an issue for Beagle xM, which does not have external pul

[U-Boot] [PATCH] mmc: set tran_speed intead of hard setting

2010-10-24 Thread Jaehoon Chung
This patch use card's tran_speed instead of hard setting value. I think mmc_set_clock(mmc, 5200) is not good idea. because this is hard setting. we need use card's tran_speed. So If card_caps did't support High speed, we need set card's speed value Signed-off-by: Jaehoon Chung Signed-off-by

[U-Boot] kirkwood: commands not found after elf_reloc merge

2010-10-24 Thread Eric Cooper
After rebasing my dockstar patches on master (fff6ec3), none of the top level commands are found: U-Boot 2010.09-dirty (Oct 24 2010 - 21:04:07) Seagate FreeAgent DockStar U-Boot code: 0060 -> 00659F44 BSS: -> 0069FF20 SoC: Kirkwood 88F6281_A0 monitor len: 0009FF20 r

Re: [U-Boot] [PATCH v4] Add generic support for samsung s3c2440

2010-10-24 Thread Minkyu Kang
Dear C Nauman On 22 October 2010 04:23, C Nauman wrote: >  This patch adds generic support for the Samsung s3c2440 processor. > > Global s3c24x0 changes to struct members converting from upper case to to > lower case. > > Signed-off-by: Craig Nauman > Cc: kevin.morf...@fearnside-systems.co.uk >

Re: [U-Boot] [PATCH v2] Freescale 85xx/P1/P2 eSPI controller driver

2010-10-24 Thread Can Aydin
Dear Wolfgang Denk, On 24/10/2010 11:21 PM, Wolfgang Denk wrote: > Dear Can Aydin, > > In message<1287920728-6458-1-git-send-email-can.ay...@locatacorp.com> you > wrote: >> Driver for the Freescale eSPI controller found in 85xx, P1/P2 and P4xx SoCs. > ... >> +static inline void write_u32_part

[U-Boot] CONFIG_HZ = 1000 makes timer stop working on SA1100

2010-10-24 Thread Kristoffer Ericson
Hi, Subject pretty much says it all. When using CONFIG_HZ = 1000, it can no longer handle any delays (ex. autoboot = 10s goes directly to bootup). Moving it back to the correct HZ setting for SA1100 makes it work properly again. So either its due to the problem Jochen pointed out earlier or simply

Re: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs

2010-10-24 Thread Joakim Tjernlund
"Schwarz,Andre" wrote on 2010/10/24 22:33:44: > > Wolfgang, > > Wolfgang Denk hat am 24. Oktober 2010 um 22:18 geschrieben: > > > Dear "Schwarz,Andre", > > > > In message <1702240919.111.1287950899754.javamail.open-xcha...@proteus> you > > wrote: > > > > > > Since I assume Wolfgang won't accept

Re: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs

2010-10-24 Thread Joakim Tjernlund
Wolfgang Denk wrote on 2010/10/24 22:18:32: > > Dear "Schwarz,Andre", > > In message <1702240919.111.1287950899754.javamail.open-xcha...@proteus> you > wrote: > > > > Since I assume Wolfgang won't accept a board specific "add 4 nops after > > _start"-patch I'd like to solve this without trial and

Re: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs

2010-10-24 Thread Schwarz,Andre
Wolfgang, Wolfgang Denk hat am 24. Oktober 2010 um 22:18 geschrieben: > Dear "Schwarz,Andre", > > In message <1702240919.111.1287950899754.javamail.open-xcha...@proteus> you > wrote: > > > > Since I assume Wolfgang won't accept a board specific "add 4 nops after > > _start"-patch I'd like to s

Re: [U-Boot] [PATCH] arm1176: fix relocation

2010-10-24 Thread Darius Augulis
On 10/24/2010 11:08 PM, Darius Augulis wrote: > Fix relocation code for arm1176, do it like other ARM > CPU's are doing. > Tested only with CONFIG_SKIP_RELOCATE_UBOOT defined > and using nand_spl (booting from nand). Test done on > s3c6410 based board (not yet supported in main line). > > Signed-of

Re: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs

2010-10-24 Thread Wolfgang Denk
Dear "Schwarz,Andre", In message <1702240919.111.1287950899754.javamail.open-xcha...@proteus> you wrote: > > Since I assume Wolfgang won't accept a board specific "add 4 nops after > _start"-patch I'd like to solve this without trial and error. To the best of my knowledge no board made use f thi

[U-Boot] [PATCH] arm1176: fix relocation

2010-10-24 Thread Darius Augulis
Fix relocation code for arm1176, do it like other ARM CPU's are doing. Tested only with CONFIG_SKIP_RELOCATE_UBOOT defined and using nand_spl (booting from nand). Test done on s3c6410 based board (not yet supported in main line). Signed-off-by: Darius Augulis --- arch/arm/cpu/arm1176/start.S

Re: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs

2010-10-24 Thread Schwarz,Andre
All, Wolfgang Denk hat am 18. Oktober 2010 um 22:39 geschrieben: > Dear Joakim Tjernlund, > > In message <1287049904-18917-1-git-send-email-joakim.tjernl...@transmode.se> > you wrote: > > The fixup routine must not fixup NULL pointers. > > Problem can be seen by > >  char *testfun(void) __attr

[U-Boot] [PATCH v3] ARM: Use consistent assembler syntax

2010-10-24 Thread Gray Remlin
Signed-off-by: Gray Remlin --- Patch V3Subject line correction change to patch v2 from "arm926ejs: Fix two occurrences of illegal syntax assembler instructions" originally used in patch v1, as it now impacts more than one CPU type. arch/arm/cpu/arm1136/start.S |4 ++-- arch/arm/c

[U-Boot] [PATCH] hcu4, hcu5: fix out of tree building

2010-10-24 Thread Wolfgang Denk
Out of tree building of the Netstal hcu4 and hcu5 boards failed like that: Assembler messages: Fatal error: can't create /work/wd/tmp-ppc/board/netstal/hcu4/../common/fixed_sdram.o: No such file or directory Assembler messages: Fatal error: can't create /work/wd/tmp-ppc/board/netstal/hcu4/../co

[U-Boot] [PATCH] MPC8315ERD: fix build error

2010-10-24 Thread Wolfgang Denk
Commit 29c6fbe "MPC5121: Add USB EHCI support" renamed CONFIG_SYS_MPC8xxx_USB_ADDR into CONFIG_SYS_FSL_USB_ADDR but missed to update arch/powerpc/cpu/mpc83xx/cpu_init.c, resulting in: cpu_init.c: In function 'cpu_init_f': cpu_init.c:332: error: 'CONFIG_SYS_MPC8xxx_USB_ADDR' undeclared (first use i

[U-Boot] [PATCH] VoVPN-GW_100MHz: drop unsupported board configuration

2010-10-24 Thread Wolfgang Denk
The 100MHz configuation of the VoVPN-GW has never been supported, so drop it now. Signed-off-by: Wolfgang Denk --- This commit shows a problem with the concept of the "README.scrapyard" file: I'm supposed to enter the commit ID for the commit I'm just about to check in; this cannot work. Hope w

[U-Boot] [PATCH] lite5200b_PM: fix compile warning

2010-10-24 Thread Wolfgang Denk
Fix warning: icecube.c: In function 'lite5200b_wakeup': icecube.c:83: warning: format '%08lx' expects type 'long unsigned int', but argument 2 has type 'void (*)(void)' Signed-off-by: Wolfgang Denk --- board/icecube/icecube.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --

Re: [U-Boot] [PATCH v2 09/13] post/i2c: Rename I2C_ADDR_LIST to CONFIG_SYS_POST_I2C_ADDRS

2010-10-24 Thread Wolfgang Denk
Dear Peter Tyser, In message <1287724834-2922-9-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > CC: h...@denx.de > --- > doc/README.POST | 11 - > include/configs/KUP4K.h |6 ++-- > include/configs/KUP4X.h |6 ++-- > include/configs/TB

Re: [U-Boot] [PATCH v2] Freescale 85xx/P1/P2 eSPI controller driver

2010-10-24 Thread Wolfgang Denk
Dear Can Aydin, In message <1287920728-6458-1-git-send-email-can.ay...@locatacorp.com> you wrote: > Driver for the Freescale eSPI controller found in 85xx, P1/P2 and P4xx SoCs. ... > +static inline void write_u32_part (u32 * in, u32 * out, u8 size) > +{ > + int i; > + u8 *ibyte = (u8 *) i

[U-Boot] [PATCH v2] Freescale 85xx/P1/P2 eSPI controller driver

2010-10-24 Thread Can Aydin
Driver for the Freescale eSPI controller found in 85xx, P1/P2 and P4xx SoCs. Signed-off-by: Can Aydin --- Changes for v2: - Coding style cleanup - Removed modifications to common code drivers/spi/Makefile|1 + drivers/spi/fsl_espi.c | 256 ++

Re: [U-Boot] [PATCH 2/2] ARM: fix relocation support for onenand device.

2010-10-24 Thread Enric Balletbò i Serra
Hello, 2010/10/24 J. William Campbell : > On 10/23/2010 1:56 PM, Wolfgang Denk wrote: >> Dear Enric Balletbo i Serra, >> >> In message<1287479602-21721-3-git-send-email-eballe...@iseebcn.com>  you >> wrote: >>> We also have to relocate the onenand command table manually, otherwise >>> onenand com

Re: [U-Boot] ppc4xx:tftp error

2010-10-24 Thread Tim Rachman
Dear Wolfgang, According to your useful guides in our previous Emails, I examined again my ddr sdram parameters that i had set in u-boot. I'm interfacing HYB25D512160AT–7 to PPC440EP, with 133MHz plb frequency. unfortunately, I couldn't reach to an stable state, without error, in tftp a file .