Re: [U-Boot] [PATCH] MPC5200 FEC MII speed register

2009-03-13 Thread Wolfgang Denk
Dear Jon Smirl, In message <9e4733910903122026h638e6cbfl89fa30664dcf...@mail.gmail.com> you wrote: > On Wed, Mar 11, 2009 at 3:08 PM, Jon wrote: > > From: Jon Smirl > > Who's the maintainer for the mpc5200 core code? It isn't clear from > the MAINTAINERS file. If in doubt, contact the respect

[U-Boot] [PATCH] ap325rxa: Change the wait cycle in the area 5

2009-03-13 Thread Yusuke.Goda
Signed-off-by: Yusuke Goda --- board/renesas/ap325rxa/lowlevel_init.S |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/renesas/ap325rxa/lowlevel_init.S b/board/renesas/ap325rxa/lowlevel_init.S index b32f491..0daf25a 100644 --- a/board/renesas/ap325rxa/lowlevel_init

Re: [U-Boot] [PATCH] ap325rxa: Change the wait cycle in the area 5

2009-03-13 Thread Nobuhiro Iwamatsu
2009/3/13 Yusuke.Goda : > Signed-off-by: Yusuke Goda > --- >  board/renesas/ap325rxa/lowlevel_init.S |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) > Appliied, thanks. Best regards, Nobuhiro -- Nobuhiro Iwamatsu ___ U-Boot mailing list

[U-Boot] [PATCH 1/1] Fix the timer to 1msec and CONFIG_SYS_HZ to 1000.

2009-03-13 Thread Manikandan Pillai
Signed-off-by: Manikandan Pillai --- cpu/arm_cortexa8/omap3/interrupts.c |6 ++ include/configs/omap3_evm.h |2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/cpu/arm_cortexa8/omap3/interrupts.c b/cpu/arm_cortexa8/omap3/interrupts.c index 9e9817d..c415dbb

Re: [U-Boot] [PATCH 1/1] Fix the timer to 1msec and CONFIG_SYS_HZ to 1000.

2009-03-13 Thread Stefan Roese
On Friday 13 March 2009, Manikandan Pillai wrote: > Signed-off-by: Manikandan Pillai > --- > cpu/arm_cortexa8/omap3/interrupts.c |6 ++ > include/configs/omap3_evm.h |2 +- > 2 files changed, 7 insertions(+), 1 deletions(-) > > diff --git a/cpu/arm_cortexa8/omap3/interrupts.c

Re: [U-Boot] [PATCH] 83xx: correctly set encryption and I2C bus 0 clock

2009-03-13 Thread Norbert van Bolhuis
OK, no problem. Eventually I'll get it right :-) 3rd (and hopefully final) attempt: This patch makes sure the correct mask is applied when setting the encryption and I2C bus 0 clock in SCCR. Failing to do so may lead to ENCCM being 0 in which case I2C bus 0 won't function. diff --git a/cpu/mpc83

Re: [U-Boot] Multiple device support - none at all?

2009-03-13 Thread Heiko Schocher
Hello ksi, k...@koi8.net wrote: > On Thu, 12 Mar 2009, Wolfgang Denk wrote: > > >> Dear k...@koi8.net, >> >> In message you wrote: >> [...] >>> It was _NOT_ a discussion. It ceased to be one after a couple of days. You >>> guys somehow got scared by innocent CPP tricks and then discussion

[U-Boot] [PATCH 1/1] The GP timer is fixed for 1msec and CONFIG_SYS_HZ to 1000.

2009-03-13 Thread Manikandan Pillai
The header files for other OAMP3 boards have also been changed for CONFIG_SYS_HZ to be 1000. Signed-off-by: Manikandan Pillai --- cpu/arm_cortexa8/omap3/interrupts.c | 12 +++- include/configs/omap3_beagle.h |2 +- include/configs/omap3_evm.h |2 +- include/configs

Re: [U-Boot] [PATCH v6] Add support for the digsy MTC board.

2009-03-13 Thread Grzegorz Bernacki
>> Yes we can, but it is safer this way in the case when ethernet address >> spans across two chips. Rest of comments addressed in version 7 of the >> patch which will be sent soon. > > Is such a scenario (MAC address split across 2 different EEPROM > devices) possible (and supported) on these sy

[U-Boot] exit(-1) function in U-Boot

2009-03-13 Thread Drasko DRASKOVIC
Hi all, I am having hard time to find exit() function in U-Boot, so I can exit from a application at any function when something goes wrong. Is there some alternative? I just want to break program execution, printf message on the screen and regain the prompt. Salut, Drasko ___

Re: [U-Boot] [PATCH] Add bank configuration to FSL spd_sdram.c

2009-03-13 Thread Jerry Van Baren
Liu Dave-R63238 wrote: >> The routine assumed 4 bank SDRAMs, enhance to configure for 4 >> or 8 bank SDRAMs. >> >> Signed-off-by: Gerald Van Baren >> --- >> >> I haven't made much headway on adapting the cpu/mpc8/ddr >> routines to the 83xx (8360). It has some 85xx (86xx) >> assumptions in

Re: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.

2009-03-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:40 Wed 11 Mar , Nicolas Ferre wrote: > Ben Warren : >> Hi Nicolas, >> >> Nicolas Ferre wrote: >> >>> diff --git a/drivers/net/macb.c b/drivers/net/macb.c >>> index af0409b..6de0a04 100644 >>> --- a/drivers/net/macb.c >>> +++ b/drivers/net/macb.c >>> @@ -447,14 +447,14 @@ static int macb_

[U-Boot] [PATCH] Make nboot skip bad blocks

2009-03-13 Thread Ladislav Michl
Hi, nboot command currently does not skip bad blocks and gives read error when loading image stored over bad block. With patch applied, nboot works as expected: # nand bad Device 0 bad blocks: 0078 014a 0200 02cc 04aa # boot Loading from NAND 128MiB 3,3V 8-bit, offs

[U-Boot] [PATCH] Update board NetStar

2009-03-13 Thread Ladislav Michl
Hi, following patch brings board NetStar back into shape. CHANGELOG * Make NAND work again (broken after new NAND code merge) * Move conditional compilation to Makefile * Enable I2C driver and RTC clock Signed-off-by: Ladislav Michl diff --git a/board/netstar/Makefile b/board/netstar/Makefile

[U-Boot] Fwd: [PATCH] MPC5200 FEC MII speed register

2009-03-13 Thread Jon Smirl
John, could you please apply this. Without this the MII commands don't work on any of the mpc5200 platforms. mpc5xxx_fec_halt() sets the mii speed register to zero it needs to left at a non-zero speed for the commands to function. -- Forwarded message -- From: Jon Date: Wed, Mar

Re: [U-Boot] [PATCH v6] Add support for the digsy MTC board.

2009-03-13 Thread Wolfgang Denk
Dear Grzegorz Bernacki, In message <49ba2c42.5080...@semihalf.com> you wrote: > > > Is such a scenario (MAC address split across 2 different EEPROM > > devices) possible (and supported) on these systems? > > I think it is possible, cause whole eeprom is threated as a one continuous > area. Moreo

Re: [U-Boot] exit(-1) function in U-Boot

2009-03-13 Thread Wolfgang Denk
Dear Drasko, In message <5ec3d7930903130339t592e64a8o5ace302e0697...@mail.gmail.com> you wrote: > > I am having hard time to find exit() function in U-Boot, so I can exit from > a application at any function when something goes wrong. U-Boot itself has no exit, obviously. But you mention "appli

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-03-13 Thread Sergey Lapin
> > But the config file for afeb9260 sets it to a value of 8598, > > and I can't change that as I don't know that board, but it's > > near enough to 1 to accept that. > > And I noticed that only because I had the check there in the > > first place, so it didn't compile with MAKEALL when

[U-Boot] [PATCH v2] Add bank configuration to FSL spd_sdram.c

2009-03-13 Thread Jerry Van Baren
The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8 bank SDRAMs. Signed-off-by: Gerald Van Baren --- V2: Do both sets of chip selects. D'oh! The cpu/mpc83xx/spd_sdram.c routine /almost/ worked for me. It turns out my DIMM stick has 8 banks which was being ignored (hard-coded fo

Re: [U-Boot] At91 mass storage device

2009-03-13 Thread E Robertson
On Thu, Mar 12, 2009 at 5:50 PM, Remy Bohmer wrote: > Hello, > > Please don't top post. > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > A: Top-posting. > Q: What is the most annoying thing in e-mail? > (see http://www.netmeister

[U-Boot] [GIT PULL] Please pull mpc5xxx tree

2009-03-13 Thread John Rigby
The following changes since commit 3c92217732edfc0016c3cbdc828471d013d23a36: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx are available in the git repository at: git://git.denx.de/u-boot-mpc5xxx.git master Jon Smirl (1): MPC5200 FEC MII speed

Re: [U-Boot] Fwd: [PATCH] MPC5200 FEC MII speed register

2009-03-13 Thread John Rigby
Jon Smirl wrote: > John, could you please apply this. > > Without this the MII commands don't work on any of the mpc5200 > platforms. mpc5xxx_fec_halt() sets the mii speed register to zero it > needs to left at a non-zero speed for the commands to function. > > -- Forwarded message

Re: [U-Boot] At91 mass storage device

2009-03-13 Thread E Robertson
On Fri, Mar 13, 2009 at 11:19 AM, E Robertson wrote: > On Thu, Mar 12, 2009 at 5:50 PM, Remy Bohmer wrote: > ... > > One thing I never understood is that after a power cycle with a usb > memory stick plugged in, > I always have to start and restart the usb probe to recognize the > storage device.

Re: [U-Boot] [PATCH 17/26 v2] tools/Makefile: Give precedence to U-Boot's include directory

2009-03-13 Thread Peter Tyser
On Thu, 2009-03-12 at 19:02 -0500, Andy Fleming wrote: > On Thu, Mar 12, 2009 at 6:53 PM, Peter Tyser wrote: > > On Fri, 2009-03-13 at 00:19 +0100, Wolfgang Denk wrote: > >> Dear Mike Frysinger, > >> > >> In message <200903121901.23433.vap...@gentoo.org> you wrote: > >> > > >> > On Thursday 12 Mar

[U-Boot] Directory of Nursing Homes, emergency medicine physicians, Alternative Medicine and more

2009-03-13 Thread Stafford Regina
Practicing Medical Doctors in the US Featuring the most accurate contact information in many different areas of medicine you can sort by many different fields reduced price is now: $394 === A gift to you when you purchase, receive these 4 databases below {}{}{} **> Dentists ==> Veter

[U-Boot] PXA Pull request

2009-03-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, please pull The following changes since commit 014c595f12d4f7e14cb10188f856465b2d41718f: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx are available in the git repository at: git://git.denx.de/u-boot-pxa.git master Jean-Christophe PLAGNIO

Re: [U-Boot] [PATCH] PowerPC MPC85xx: don't hang on read exception

2009-03-13 Thread Andrew Klossner
> In fact. u-boot has some support for these error events, check the > cpu/mpc85xx/interrupts, 8548cds, 8544ds board file and drivers/pci > /fsl-pci...c. beside they has not good framework. Yes, that's a start. The interrupts should be configured as critical so that the processor doesn't hang whe

[U-Boot] ARM Pull Request

2009-03-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, Please pull The following changes since commit 3c92217732edfc0016c3cbdc828471d013d23a36: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx are available in the git repository at: git://git.denx.de/u-boot-arm.git master Dirk Behme (1): O

[U-Boot] [PATCH/next v3 05/28] Rename include/zlib.h to include/u-boot/zlib.h

2009-03-13 Thread Peter Tyser
Some systems have zlib.h installed in /usr/include/. This isn't the desired file (we want the one in include/zlib.h). Moving U-Boot's zlib.h to include/u-boot/ avoids this conflict. Signed-off-by: Peter Tyser --- common/cmd_bootm.c |2 +- fs/cramfs/uncompress.c |2 +- inc

[U-Boot] [PATCH/next v3 03/28] common/Makefile: Conditionally compile env_embedded.o

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- common/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/Makefile b/common/Makefile index f13cd11..f81f3d8 100644 --- a/common/Makefile +++ b/common/Makefile @@ -51,7 +51,7 @@ COBJS-y += cmd_nvedit.o COBJS-y += env_common.o

[U-Boot] [PATCH/next v3 08/28] tools/Makefile: Remove HOSTARCH HOSTOS defines

2009-03-13 Thread Peter Tyser
The values of HOSTARCH and HOSTOS which are exported from the top-level Makefile should be used Signed-off-by: Peter Tyser --- tools/Makefile | 12 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 9e9ee15..e87daaf 100644 --- a/t

[U-Boot] [PATCH/next v3 01/28] Makefile: Make autoconf.mk a dependency of the depend target

2009-03-13 Thread Peter Tyser
The original code did not generate autoconf.mk until after some targets dependencies had already been calculated, for example the directories in the SUBDIRS variable Signed-off-by: Peter Tyser --- Makefile | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Ma

[U-Boot] [PATCH/next v3 02/28] Makefile: Add removal of *.exe files to clean target

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 6f17ed1..b68de1c 100644 --- a/Makefile +++ b/Makefile @@ -3470,7 +3470,7 @@ clean: @rm -f $(obj)api_examples/demo $(TIMESTAMP_FILE) $(VERSION_FILE)

[U-Boot] [PATCH/next v3 04/28] elf.h: Use stdint.h to provide standard typedefs for WIN32

2009-03-13 Thread Peter Tyser
The original code provided an incomplete set of typedefs for WIN32 compiles and replicated the standard typedefs that are already provided by stdint.h Signed-off-by: Peter Tyser --- include/elf.h |7 +-- 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/include/elf.h b/inclu

[U-Boot] [PATCH/next v3 07/28] gen_eth_addr: Use POSIX rand() and srand()

2009-03-13 Thread Peter Tyser
Replace random()/srandom() use with rand()/srand() to support compilation with the mingw toolchain. The rand()/srand() functions are generally more common and are functionally equivalent to the original random()/srandom() calls. Signed-off-by: Peter Tyser --- tools/gen_eth_addr.c |6 +++---

[U-Boot] [PATCH/next v3 06/28] Rename include/bzlib.h to include/u-boot/bzlib.h

2009-03-13 Thread Peter Tyser
Some systems have bzlib.h installed in /usr/include/. This isn't the desired file (we want the one in include/bzlib.h). Moving U-Boot's bzlib.h to include/u-boot/ avoids this conflict. Signed-off-by: Peter Tyser --- board/mpl/common/common_util.c |2 +- common/cmd_bootm.c |

[U-Boot] [PATCH/next v3 00/28] tools/Makefile cleanup and win32 tool support

2009-03-13 Thread Peter Tyser
This patch series attempts to do 2 things: 1. Add support for generating win32 versions of the tools in tools/ 2. Cleanup tools/Makefile somewhat In the process of #1 I couldn't help but work on #2 a bit:) Let me know if people would prefer the patches split up. The win32 tools support is based

[U-Boot] [PATCH/next v3 10/28] tools/Makefile: Split variable declarations into multiple lines

2009-03-13 Thread Peter Tyser
Split variable declarations into multiple lines and use the standard VAR-y convention. Also move object and binary variable declarations to after config.mk has been included to allow for these lists to utilize the CONFIG_XXX variables. These changes lay the groundwork for conditional compilation

[U-Boot] [PATCH/next v3 16/28] tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index ec35f18..f648d34 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -77,7 +77,7 @@ BIN_FILES-$(CONFIG_CMD_LOADS) += img2srec$(SFX) BIN_

[U-Boot] [PATCH/next v3 09/28] tools/Makefile: Remove inappropriate double-tabs

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile | 153 1 files changed, 77 insertions(+), 76 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index e87daaf..4219aef 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -126,164 +126,

[U-Boot] [PATCH/next v3 11/28] tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 14da78d..3c59bba 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -78,7 +78,8 @@ BIN_FILES-y += mkimage$(SFX) BIN_FILES-y += e

[U-Boot] [PATCH/next v3 13/28] tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index b4bd417..e314091 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -76,7 +76,7 @@ include $(TOPDIR)/config.mk BIN_FILES-$(CONFIG_CMD_L

[U-Boot] [PATCH/next v3 14/28] tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index e314091..942fae2 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -80,6 +80,7 @@ BIN_FILES-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1$(S

[U-Boot] [PATCH/next v3 15/28] tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 942fae2..ec35f18 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -75,7 +75,7 @@ include $(TOPDIR)/config.mk # Generated executable f

[U-Boot] [PATCH/next v3 19/28] tools: Remove unecessary symlinking of zlib.h

2009-03-13 Thread Peter Tyser
crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink was previously necessary to give U-Boot's version of zlib.h precedence over the host computer's version of zlib.h. Signed-off-by: Peter Tyser --- Makefile |2 +- tools/.gitignore |1 - tools/Makefile |6 +

[U-Boot] [PATCH/next v3 12/28] tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 3c59bba..b4bd417 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -73,7 +73,7 @@ endif include $(TOPDIR)/config.mk # Generated exe

[U-Boot] [PATCH/next v3 17/28] tools/Makefile: Compile ncb when CONFIG_NETCONSOLE

2009-03-13 Thread Peter Tyser
Also conditionally add ncb.o to OBJ_FILES list Signed-off-by: Peter Tyser --- doc/README.NetConsole |6 ++ tools/Makefile|2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/README.NetConsole b/doc/README.NetConsole index 94c8816..639cc12 100644 --- a/doc

[U-Boot] [PATCH/next v3 20/28] tools/Makefile: Add libfdt/ to the include search path

2009-03-13 Thread Peter Tyser
This change makes the process of symlinking libfdt_internal.h unnecessary Signed-off-by: Peter Tyser --- Makefile |2 +- tools/.gitignore |1 - tools/Makefile | 15 ++- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 8179b

[U-Boot] [PATCH/next v3 18/28] tools/Makefile: Add tools/ to the include search path

2009-03-13 Thread Peter Tyser
This change makes the process of symlinking mkimage.h and fdt_host.h unnecessary Signed-off-by: Peter Tyser --- tools/Makefile |7 +-- 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 35e694d..e1f262b 100644 --- a/tools/Makefile +++ b/t

[U-Boot] [PATCH/next v3 21/28] tools/Makefile: Remove symlinks for fdt targets

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- Makefile |3 +-- tools/.gitignore |5 - tools/Makefile | 32 +++- 3 files changed, 8 insertions(+), 32 deletions(-) diff --git a/Makefile b/Makefile index 4d6b04c..ef95339 100644 --- a/Makefile +++ b/Makefile @@ -

[U-Boot] [PATCH/next v3 22/28] tools/Makefile: Dynamically generate libfdt object dependencies

2009-03-13 Thread Peter Tyser
Add the libfdt files to the SRCS variable so that they have their dependencies automatically generated Signed-off-by: Peter Tyser --- tools/Makefile | 13 ++--- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index ef51abc..b1680ad 100644

[U-Boot] [PATCH/next v3 23/28] tools/Makefile: Remove symlinks for remaining source files

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- Makefile |3 +-- tools/.gitignore |5 - tools/Makefile | 44 +--- 3 files changed, 14 insertions(+), 38 deletions(-) diff --git a/Makefile b/Makefile index ef95339..dfcb71b 100644 --- a/Makefile +++ b/

[U-Boot] [PATCH/next v3 25/28] tools/Makefile: Create generic build rules

2009-03-13 Thread Peter Tyser
Create a few generic build rules to replace the current method which has 1 build target for each file Signed-off-by: Peter Tyser --- tools/Makefile | 55 +-- 1 files changed, 9 insertions(+), 46 deletions(-) diff --git a/tools/Makefile b/too

[U-Boot] [PATCH/next v3 24/28] tools/Makefile: Use auto-generated object file dependencies

2009-03-13 Thread Peter Tyser
Files in the SRCS variable have their dependencies automatically generated so remove duplicate explicit dependencies Signed-off-by: Peter Tyser --- tools/Makefile | 24 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/Makefile b/tools/Makefile ind

[U-Boot] [PATCH/next v3 26/28] tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile | 17 + 1 files changed, 5 insertions(+), 12 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index d6d366d..9fe5b1a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -35,22 +35,15 @@ TOOLSUBDIRS = # multiple symbol defi

[U-Boot] [PATCH/next v3 27/28] Add support for building native win32 tools

2009-03-13 Thread Peter Tyser
Add support for compiling the host tools in the tools directory using the MinGW toolchain. This produces executables which can be used on standard Windows computers without requiring cygwin. One must specify the MinGW compiler and strip utilities as if they were the host toolchain in order to bui

[U-Boot] [PATCH/next v3 28/28] Delete now unused tools/Makefile.win32

2009-03-13 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile.win32 | 37 - 1 files changed, 0 insertions(+), 37 deletions(-) delete mode 100644 tools/Makefile.win32 diff --git a/tools/Makefile.win32 b/tools/Makefile.win32 deleted file mode 100644 index 69dc44c..000 --

Re: [U-Boot] [PATCH v2] Add bank configuration to FSL spd_sdram.c

2009-03-13 Thread Liu Dave-R63238
> From: Jerry Van Baren [mailto:gvb.ub...@gmail.com] > Sent: Friday, March 13, 2009 11:40 PM > To: u-boot@lists.denx.de; Phillips Kim-R1AAHA; Liu Dave-R63238 > Subject: [PATCH v2] Add bank configuration to FSL spd_sdram.c > > The routine assumed 4 bank SDRAMs, enhance to configure for 4 > or 8 b

Re: [U-Boot] JFFS2 scanning bug

2009-03-13 Thread Ilya Yanok
Hi Mark, mpfj-l...@mimc.co.uk wrote: >> Hi Mark, >> >> Don't you have JTAG debugger so you could find where exactly it hangs? >> Or you can try adding debugging printf's to the source... I can't >> reproduce your problem myself so that info would be useful. >> > > Thanks for clearing this

[U-Boot] [PATCH 1/2] fsl-ddr: Fix two bugs in the ddr infrastructure

2009-03-13 Thread Dave Liu
1. wr_lat UM said the total write latency for DDR2 is equal to WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1. so, the WR_LAT = CL - 1; 2. rd_to_pre we missed to add the ADD_LAT for DDR2 case. Reported-by: Joakim Tjernlund Signed-off-by: Dave Liu --- The patch is resent to l

[U-Boot] [PATCH 2/2] fsl-ddr: add the DDR3 SPD infrastructure

2009-03-13 Thread Dave Liu
- support mirrored DIMMs, not support register DIMMs - test passed on P2020DS board with MT9JSF12872AY-1G1D1 - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1 Signed-off-by: Dave Liu Signed-off-by: Travis Wheatley --- common/ddr_spd.c| 53 + cpu/mpc85xx/dd