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

2009-03-12 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

Re: [U-Boot] [PATCH 1/1] Changes for fixing the timer to 1 msec and

2009-03-10 Thread Peter Tyser
On Tue, 2009-03-10 at 14:06 +0530, Manikandan Pillai wrote: > The cmd_misc.c was changed to fix sleep. > nand_base.c was fixed to fix the wait. > > Signed-off-by: Manikandan Pillai > --- > common/cmd_misc.c |1 + > cpu/arm_cortexa8/omap3/interrupts.c | 13 - >

Re: [U-Boot] [PATCH 12/15] Add support for building native win32 tools

2009-03-05 Thread Peter Tyser
On Wed, 2009-03-04 at 19:21 -0500, Mike Frysinger wrote: > On Wednesday 04 March 2009 18:33:02 Peter Tyser wrote: > > --- a/README > > +++ b/README > > + the tools directory you can use the MinGW toolchain > > + (http://www.mingw.org). Set y

Re: [U-Boot] [PATCH 11/15] elf.h: Add missing int32_t typedef for WIN32 compilers

2009-03-04 Thread Peter Tyser
On Wed, 2009-03-04 at 18:54 -0500, Mike Frysinger wrote: > On Wednesday 04 March 2009 18:33:01 Peter Tyser wrote: > > Signed-off-by: Peter Tyser > > --- > > include/elf.h |1 + > > 1 files changed, 1 insertions(+), 0 deletions(-) > > > > diff --git a/

Re: [U-Boot] [PATCH 03/15] tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled

2009-03-04 Thread Peter Tyser
On Wed, 2009-03-04 at 18:48 -0500, Mike Frysinger wrote: > On Wednesday 04 March 2009 18:32:53 Peter Tyser wrote: > > Signed-off-by: Peter Tyser > > --- > > tools/Makefile | 107 > > +--- 1 files changed, > &g

[U-Boot] [PATCH 15/15] common/Makefile: Conditionally compile env_embedded.o

2009-03-04 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 14/15] Deleted unused tools/Makefile.win32

2009-03-04 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

[U-Boot] [PATCH 12/15] Add support for building native win32 tools

2009-03-04 Thread Peter Tyser
build win32 executables, eg: make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools Signed-off-by: Peter Tyser --- README| 10 ++ include/image.h |2 + include/libfdt_env.h | 12 +++ include/linux/types.h |5 ++- tools/Makefile

[U-Boot] [PATCH 11/15] elf.h: Add missing int32_t typedef for WIN32 compilers

2009-03-04 Thread Peter Tyser
Signed-off-by: Peter Tyser --- include/elf.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/elf.h b/include/elf.h index a9839df..3a948f7 100644 --- a/include/elf.h +++ b/include/elf.h @@ -45,6 +45,7 @@ #include typedef unsigned char uint8_t

[U-Boot] [PATCH 13/15] Makefile: Add removal of *.exe file to clean target

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

[U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-03-04 Thread Peter Tyser
Replace random()/srandom() use with rand()/srand() to support compilation with the mingw toolchain Signed-off-by: Peter Tyser --- tools/gen_eth_addr.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/gen_eth_addr.c b/tools/gen_eth_addr.c index 75be385..429b20d

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

2009-03-04 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 3a76a6d..6fccb8a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -87,7 +87,7 @@ include $(TOPDIR)/config.mk # Generated executable

[U-Boot] [PATCH 09/15] tools/Makefile: Compile ncb when CONFIG_NETCONSOLE

2009-03-04 Thread Peter Tyser
Signed-off-by: Peter Tyser --- doc/README.NetConsole |6 ++ tools/Makefile|1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/README.NetConsole b/doc/README.NetConsole index 94c8816..639cc12 100644 --- a/doc/README.NetConsole +++ b/doc/README.NetConsole

[U-Boot] [PATCH 05/15] tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG

2009-03-04 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 3b90ba6..27a0361 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -88,7 +88,7 @@ include $(TOPDIR)/config.mk BIN_FILES

[U-Boot] [PATCH 06/15] tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP

2009-03-04 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 27a0361..3a76a6d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -92,6 +92,7 @@ BIN_FILES-$(CONFIG_SHA1_CHECK_UB_IMG) += ubsha1

[U-Boot] [PATCH 04/15] tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS

2009-03-04 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 09512ec..3b90ba6 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -85,7 +85,7 @@ endif include $(TOPDIR)/config.mk # Generated

[U-Boot] [PATCH 08/15] tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET

2009-03-04 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 6fccb8a..6e60c0d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -89,7 +89,7 @@ BIN_FILES-$(CONFIG_CMD_LOADS) += img2srec$(SFX

[U-Boot] [PATCH 03/15] tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled

2009-03-04 Thread Peter Tyser
Signed-off-by: Peter Tyser --- tools/Makefile | 107 +--- 1 files changed, 55 insertions(+), 52 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 991ad8b..09512ec 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -21,57 +21,6

[U-Boot] [PATCH 02/15] tools/Makefile: Split variable declarations into multiple lines

2009-03-04 Thread Peter Tyser
Split variable declarations into multiple lines and use the standard VAR-y convention. This should more easily allow conditional compilation of files in the future. Signed-off-by: Peter Tyser --- tools/Makefile | 46 ++ 1 files changed, 34

[U-Boot] [PATCH 01/15] tools/Makefile: Remove inappropriate double-tabs

2009-03-04 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 9e9ee15..5cce148 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -138,164

[U-Boot] [PATCH 00/15] tools/Makefile cleanup and win32 tool support

2009-03-04 Thread Peter Tyser
riable and used HOST* variables instead 4. Updated top-level Makefile to remove all generated *.exe files Peter Tyser (15): tools/Makefile: Remove inappropriate double-tabs tools/Makefile: Split variable declarations into multiple lines tools/Makefile: Build bmp_logo only when LCD or VIDEO logos

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-25 Thread Peter Tyser
Sorry for the delayed response, On Tue, 2009-02-10 at 11:31 -0600, Scott Wood wrote: > On Tue, Feb 10, 2009 at 08:59:11AM -0500, Jerry Van Baren wrote: > > That is my reasoning behind my statement that we can generally ignore > > the autonegotiation <-> fixed configuration case because the odds o

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-25 Thread Peter Tyser
On Fri, 2009-02-06 at 18:27 -0500, Mike Frysinger wrote: > On Friday 06 February 2009 17:01:43 Peter Tyser wrote: > > On Fri, 2009-02-06 at 16:51 -0500, Mike Frysinger wrote: > > > On Friday 06 February 2009 14:59:10 Peter Tyser wrote: > > > > On Fri, 2009-02-06 at 20

Re: [U-Boot] [PATCH 1/7 v4] i2c, dtt: move dtt_init () to board_init_r ()

2009-02-24 Thread Peter Tyser
Hi Heiko, On Tue, 2009-02-24 at 11:30 +0100, Heiko Schocher wrote: > In case where a board not uses CONFIG_POST, it is not > necessary to init the DTTs when running from flash. > > Signed-off-by: Heiko Schocher > --- > lib_ppc/board.c |5 - > 1 files changed, 4 insertions(+), 1 deletion

Re: [U-Boot] Status open patches: ARM, AT91, IXP, PXA

2009-02-23 Thread Peter Tyser
[U-Boot] [PATCH 01/15 v6] OMAP3: Add pin mux, clock > and cpu headers > 12/14 Dirk Behme [U-Boot] [PATCH 05/15 v6] OMAP3: Add common board, > interrupt and system info > 12/17 Peter Tyser[U-Boot] [PATCH v6 0/3] Support for XPedite5370 and > misc GPIO The 3 patches above have already made it into mainline. Best, Peter ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 06/30] net: get mac address from environment and use eth util funcs

2009-02-17 Thread Peter Tyser
On Tue, 2009-02-17 at 00:10 -0500, Mike Frysinger wrote: > Signed-off-by: Mike Frysinger > CC: Ben Warren > --- > net/bootp.c | 13 ++--- > net/net.c | 17 + > 2 files changed, 7 insertions(+), 23 deletions(-) > > diff --git a/net/bootp.c b/net/bootp.c > index d1cb

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 16:51 -0500, Mike Frysinger wrote: > On Friday 06 February 2009 14:59:10 Peter Tyser wrote: > > On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > > > In message Peter Tyser wrote: > > > > Add a mkimage_win32.exe build target which can

Re: [U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 16:40 -0500, Mike Frysinger wrote: > On Friday 06 February 2009 16:22:01 Peter Tyser wrote: > > Add a mkimage_win32.exe build target which can produce a native > > win32 mkimage executable using the MinGW toolchain. The > > mkimage_win32.exe binary

[U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
environment but don't use cygwin. Signed-off-by: Peter Tyser --- I'm not sure what the odds of this being picked up, but I thought others might find this useful. Changes since v1: - Fixed "Engineering" typos Makefile |5 ++- README|6

Re: [U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 15:03 -0600, Kumar Gala wrote: > On Feb 6, 2009, at 2:30 PM, Peter Tyser wrote: > > > L1:D-cache 32 KB enabled > > I-cache 32 KB enabled > > a nit but can we get I-cache to line up w/D-Cache Hmm, they look lined up in my serial console ou

[U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
Configuration: CPU:1066.667 MHz, MPX:533.333 MHz DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz L1:D-cache 32 KB enabled I-cache 32 KB enabled L2:512 KB enabled Board: X-ES XPedite5170 3U VPX SBC Signed-off-by: Peter Tyser --- cpu/mpc86xx/cpu.c | 82

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1233941433-7943-1-git-send-email-pty...@xes-inc.com> you wrote: > > Add a mkimage_win32.exe build target which can produce a native > > win32 mkimage executable usin

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 13:01 -0600, Kumar Gala wrote: > On Feb 6, 2009, at 12:41 PM, Peter Tyser wrote: > > > On Thu, 2009-02-05 at 20:13 -0600, Kumar Gala wrote: > >> On Feb 5, 2009, at 1:52 PM, Peter Tyser wrote: > >> > >>> > >>> CPU: 8641

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Thu, 2009-02-05 at 20:13 -0600, Kumar Gala wrote: > On Feb 5, 2009, at 1:52 PM, Peter Tyser wrote: > > > > > CPU: 8641D, Version: 2.1, (0x80900121) > > Core: E600 Core 0, Version: 0.2, (0x80040202) > > Since you are touching things here.. mind fixing the Versi

[U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
environment but don't use cygwin. Signed-off-by: Peter Tyser --- I'm not sure what the odds of this being picked up, but I thought others might find this useful. Makefile |5 ++- README|6 +++ include/image.h |2 + include/libfdt_env

Re: [U-Boot] CONFIG_MP affects ability to erase upper portions of flash on 8572

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 10:51 -0500, Scott Coulter wrote: > Kumar, > > > This is correct. As the only 8572 board that exists in the u-boot > > tree is for the Freescale MPC8572DS I didn't query anyone else on > > possible impact of the change. > > Certainly not a problem. Moving the flash add

[U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-05 Thread Peter Tyser
, MPX:533.333 MHz DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz L1:D-cache 32 KB enabled I-cache 32 KB enabled L2:512 KB enabled Board: X-ES XPedite5170 3U VPX SBC Signed-off-by: Peter Tyser --- cpu/mpc86xx/cpu.c | 80

[U-Boot] [PATCH 1/2] 86xx: Update Global Utilities structure

2009-02-05 Thread Peter Tyser
Signed-off-by: Peter Tyser --- include/asm-ppc/immap_86xx.h | 29 + 1 files changed, 21 insertions(+), 8 deletions(-) diff --git a/include/asm-ppc/immap_86xx.h b/include/asm-ppc/immap_86xx.h index df28c0f..470385f 100644 --- a/include/asm-ppc/immap_86xx.h +++ b

[U-Boot] [PATCH 2/2] 86xx: Reset update

2009-02-05 Thread Peter Tyser
if needed. Signed-off-by: Peter Tyser --- board/freescale/mpc8610hpcd/mpc8610hpcd.c |8 +++ board/freescale/mpc8641hpcn/mpc8641hpcn.c |8 +++ board/sbc8641d/sbc8641d.c | 29 ++ cpu/mpc86xx/cpu.c | 80

Re: [U-Boot] [PATCH] nand_base: Add timeout for NAND reset command

2009-02-05 Thread Peter Tyser
Hi Scott, On Wed, 2009-02-04 at 22:54 +0100, Wolfgang Denk wrote: > Dear Scott, > > In message <498a0917.8080...@freescale.com> you wrote: > > > > > get_ticks() not a public interface. It should not be used in any > > > common code. > > > > Then what is it doing in include/common.h? > > > > > P

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-05 Thread Peter Tyser
On Wed, 2009-02-04 at 17:07 -0600, Andy Fleming wrote: > On Wed, Feb 4, 2009 at 3:26 PM, Wolfgang Denk wrote: > > Dear Andy Fleming, > > > > In message <2acbd3e40902041320l3bce93c1p989c4c33ca8e...@mail.gmail.com> you > > wrote: > >> > >> HmmmI made that change for a reason. Waiting for auton

Re: [U-Boot] [PATCH] tsec: Fix a bug in soft-resetting

2009-02-04 Thread Peter Tyser
t would have a CRC error that would result in an error such as: => dhcp Enet starting in 100BT/HD Speed: 100, half duplex BOOTP broadcast 1 Got error 4 BOOTP broadcast 2 Thanks! Tested-by: Peter Tyser ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-04 Thread Peter Tyser
On Wed, 2009-02-04 at 22:26 +0100, Wolfgang Denk wrote: > Dear Andy Fleming, > > In message <2acbd3e40902041320l3bce93c1p989c4c33ca8e...@mail.gmail.com> you > wrote: > > > > HmmmI made that change for a reason. Waiting for autonegotiation > > to finish on a tsec with no link was quite tireso

Re: [U-Boot] [PATCH] nand_base: Add timeout for NAND reset command

2009-02-04 Thread Peter Tyser
On Wed, 2009-02-04 at 22:22 +0100, Wolfgang Denk wrote: > Dear Scott Wood, > > In message <4989fe57.80...@freescale.com> you wrote: > > Peter Tyser wrote: > > > The 25ns was calculated based on the addition of trp and trhoh from the > > > Micron MT29F8G08

[U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-04 Thread Peter Tyser
/HD eTSEC2: No link. => With this patch applied the same operation as above resulted in: => dhcp Waiting for PHY auto negotiation to complete. done Enet starting in 1000BT/FD Speed: 1000, full duplex Signed-off-by: Peter Tyser --- drivers/net/tsec.c | 19 +-- 1 files c

Re: [U-Boot] [PATCH] nand_base: Add timeout for NAND reset command

2009-02-04 Thread Peter Tyser
On Wed, 2009-02-04 at 13:54 -0600, Scott Wood wrote: > Peter Tyser wrote: > > +/* > > + * CONFIG_SYS_NAND_RESET_CNT is used as a timeout mechanism when resetting > > + * a flash. NAND flash is initialized prior to interrupts so standard > > t

[U-Boot] [PATCH] nand_base: Add timeout for NAND reset command

2009-02-04 Thread Peter Tyser
Without the timeout present an infinite loop can occur if the NAND device is broken or not present. Signed-off-by: Peter Tyser --- drivers/mtd/nand/nand_base.c | 19 +-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd

[U-Boot] [PATCH] nand_base: Silence warning when CONFIG_SYS_NAND_QUIET_TEST

2009-02-04 Thread Peter Tyser
Commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61 removed support for disabling the "No NAND device found!!!" warning when CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support for silencing the warning. Signed-off-by: Peter Tyser --- drivers/mtd/nand/nand_base.c |2 +

Re: [U-Boot] [PATCH] Add support for setting environment variable from RAM.

2009-02-03 Thread Peter Tyser
Hi Eric, On Tue, 2009-02-03 at 08:28 -0700, Eric Nelson (Boundary Devices) wrote: > / > + * Set a new environment variable from RAM. > + * Requires three arguments: the variable name, a memory address and a > length. > + * >

[U-Boot] [PATCH] Add feature-removal-schedule.txt

2009-01-30 Thread Peter Tyser
Signed-off-by: Peter Tyser --- See the following threads for background: http://article.gmane.org/gmane.comp.boot-loaders.u-boot/48429 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/47755 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/53340 doc/feature-removal-schedule.txt

Re: [U-Boot] [Patch] Disable/Enable Flat I²C Co mmands

2009-01-29 Thread Peter Tyser
On Thu, 2009-01-29 at 22:15 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1233262578.19784.19.ca...@localhost.localdomain> you wrote: > > > > Its actually already on the wiki page. > > Ah, good. Sometimes I'm better than I think mysel

Re: [U-Boot] [Patch] Disable/Enable Flat I²C Co mmands

2009-01-29 Thread Peter Tyser
Hi Wolfgang, On Thu, 2009-01-29 at 21:37 +0100, Wolfgang Denk wrote: > Dear Ben Warren, > > In message <498203bd.3000...@gmail.com> you wrote: > > > > From README: > > > > > > CONFIG_I2C_CMD_TREE is a recommended option that places > > all I2C commands under a s

Re: [U-Boot] [Patch] Disable/Enable Flat I²C Co mmands

2009-01-29 Thread Peter Tyser
On Thu, 2009-01-29 at 10:16 -0800, Ben Warren wrote: > Jens Scharsig wrote: > > Since CONFIG_I2C_CMD_TREE are defined, the old flat i2c commands are > > still present. > > This patch disables the old flat command by default, if > > CONFIG_I2C_CMD_TREE is defined. > > The new option CONFIG_I2C_CMD_F

Re: [U-Boot] [PATCH 0/5 v2] Command usage cleanup

2009-01-28 Thread Peter Tyser
Hi Wolfgang, On Wed, 2009-01-28 at 22:15 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1233100992-30871-1-git-send-email-pty...@xes-inc.com> you wrote: > > Changes since v1: > > - Rebase on top of tree > > Are you sure? > > > This

[U-Boot] [PATCH 4/5 v2] amcc: Clean up command usage output

2009-01-27 Thread Peter Tyser
Update taihu and taishan commands to use cmd_usage() function to display usage messages. Signed-off-by: Peter Tyser --- board/amcc/taihu/lcd.c |6 +++--- board/amcc/taihu/taihu.c |6 +++--- board/amcc/taishan/lcd.c |6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff

[U-Boot] [PATCH 2/5 v2] pcs440ep: Clean up led command definition

2009-01-27 Thread Peter Tyser
The pcs440ep's led command usage formatting is non-standard. It was made standard in preparation for larger command usage updates. Signed-off-by: Peter Tyser --- board/pcs440ep/pcs440ep.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/pcs440ep/pcs440e

[U-Boot] [PATCH 0/5 v2] Command usage cleanup

2009-01-27 Thread Peter Tyser
; vs "cmd2- description". 2. Command definitions are reduced in size/complexity. The patch shaved off 1.1KB from the XPedite5370 image for example. Most of the changes were done via scripts, so let me know if anything looks fishy. Best, Peter Peter Tyser (5): Clean up diufb co

[U-Boot] [PATCH 1/5 v2] Clean up diufb command definitions

2009-01-27 Thread Peter Tyser
The diufb command usage formatting is non-standard. It was made standard in preparation for larger command usage updates. Signed-off-by: Peter Tyser --- board/ads5121/ads5121_diu.c |2 +- board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |2 +- 2 files changed, 2

Re: [U-Boot] [PATCH] Add support W90P710 ARM SoC from Nuvoton

2009-01-21 Thread Peter Tyser
Hi Konstantin, > > Add support W90P710 ARM SoC from Nuvoton > > Add W90P1 board based on W90P710 > > > > Signed-off-by: Konstantin Vovk > > --- > > MAKEALL |1 + > > Makefile|3 + > > board/w90p1/Makefile

[U-Boot] [PATCH 2/5] pcs440ep: Clean up led command definition

2008-12-31 Thread Peter Tyser
The pcs440ep's led command usage formatting is non-standard. It was made standard in preparation for larger command usage updates. Signed-off-by: Peter Tyser --- board/pcs440ep/pcs440ep.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/pcs440ep/pcs440e

[U-Boot] [PATCH 4/5] amcc: Clean up command usage output

2008-12-31 Thread Peter Tyser
Update taihu and taishan commands to use cmd_usage() function to display usage messages. Signed-off-by: Peter Tyser --- board/amcc/taihu/lcd.c |6 +++--- board/amcc/taihu/taihu.c |6 +++--- board/amcc/taishan/lcd.c |6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff

[U-Boot] [PATCH 0/5] Command usage cleanup

2008-12-31 Thread Peter Tyser
nd definitions are reduced in size/complexity. The patch shaved off 1.1KB from the XPedite5370 image for example. Most of the changes were done via scripts, so let me know if anything looks fishy. Best, Peter Peter Tyser (5): Clean up diufb command definitions pcs440ep: Clean up led comma

[U-Boot] [PATCH 1/5] Clean up diufb command definitions

2008-12-31 Thread Peter Tyser
The diufb command usage formatting is non-standard. It was made standard in preparation for larger command usage updates. Signed-off-by: Peter Tyser --- board/ads5121/ads5121_diu.c |2 +- board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |2 +- 2 files changed, 2

Re: [U-Boot] [PATCH 1/2] XPedite5200 board support cleanup

2008-12-25 Thread Peter Tyser
On Thu, 2008-12-25 at 23:00 -0600, Andy Fleming wrote: > On Tue, Dec 23, 2008 at 4:32 PM, Peter Tyser wrote: > > Signed-off-by: Peter Tyser > > --- > > This should be applied to the 85xx repository and depends > > on the currently applied "XPedite5200 board s

[U-Boot] [PATCH 1/2] XPedite5200 board support cleanup

2008-12-23 Thread Peter Tyser
Signed-off-by: Peter Tyser --- This should be applied to the 85xx repository and depends on the currently applied "XPedite5200 board support" patch. board/xes/common/actl_nand.c| 65 board/xes/common/fsl_85xx_pci.c |6 +- board/xes/xpedite5200/Makefile

[U-Boot] [PATCH 2/2] 85xx: Enable inbound PCI config cycles for X-ES boards cleanup

2008-12-23 Thread Peter Tyser
Signed-off-by: Peter Tyser --- This should be applied to the 85xx repository and depends on the currently applied "85xx: Enable inbound PCI config cycles for X-ES boards" and "XPedite5200 board support". board/xes/common/fsl_85xx_pci.c |4 1 files changed, 4 insert

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2008-12-23 Thread Peter Tyser
> > > > Let me know if I should take any action. > > Ugh, yeah, if you could submit patches which fix this, I'd appreciate > it. I had some difficulty getting the patches to apply in the right > order (mailbox issues), and must have lost some things in the merge. I'll submit 2 patches to fix the

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2008-12-22 Thread Peter Tyser
Hi Andy, On Mon, 2008-12-22 at 13:36 -0600, Andy Fleming wrote: > are available in the git repository at: > > git://www.denx.de/git/u-boot-mpc85xx.git master > Peter Tyser (5): > pci/fsl_pci_init: Enable inbound PCI config cycles > Add support for PCA953

[U-Boot] [PATCH v6 2/3] Add support for Maxim's DS4510 I2C device

2008-12-17 Thread Peter Tyser
CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 424 + include/ds4510.h | 75

[U-Boot] [PATCH v6 1/3] Add support for PCA953x I2C gpio devices

2008-12-17 Thread Peter Tyser
rovides summary information for the given pca953x device. Signed-off-by: Peter Tyser --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 227 include/pca953

[U-Boot] [PATCH v6 0/3] Support for XPedite5370 and misc GPIO

2008-12-17 Thread Peter Tyser
Changes since v5: - Additional error checks in pca953x.c and ds4510.c - Changed usage of maxargs for command parsing in pca953x.c and ds4510.c - Moved include/gpio/pca953x.h to include/pca953x.h - Moved include/gpio/ds4510.h to include/ds4510.h - Rebased on current TOT Peter Tyser (3): Add supp

Re: [U-Boot] [PATCH v4 2/3] Add support for Maxim's DS4510 I2C device

2008-12-15 Thread Peter Tyser
Hi Wolfgang, Thanks for the comments. On Sun, 2008-12-14 at 12:38 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message > <300544b7901dacbe6b9e3edd052629f612b92735.1228160312.git.pty...@xes-inc.com> > you wrote: > > Initial support for the DS4510, a CPU sup

Re: [U-Boot] [PATCH 12/15] Fixed CONFIG_SYS_SC520_RESET for eNET board

2008-12-08 Thread Peter Tyser
Hi Graeme, > What is the easiest (or best) way of achieving this. The only way I can > think of is to: > - Roll back my history to the commit before d1f2d102a > - Use patch to apply d1f2d102a > - Add this change > - Commit the resulting changes > - Use git-am to apply the remaining patches >

Re: [U-Boot] [PATCH v4 3/3] XPedite5370 board support

2008-12-04 Thread Peter Tyser
On Thu, 2008-12-04 at 03:14 -0600, Andy Fleming wrote: > + } > +#else > + gur->devdisr |= MPC85xx_DEVDISR_PCIE1; /* disable */ > +#endif /* CONFIG_PCIE2 */ > > > MPC85xx_DEVDISR_PCIE1 isn't defined anywhere. Did you miss some > changes you made to header files? Thanks for catching t

[U-Boot] [PATCH] net: Fix download command parsing

2008-12-02 Thread Peter Tyser
t; as an address instead of the intended filename. The previous check for a leading quote in netboot_common() was replaced with a check which ensures only valid numbers are treated as addresses. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- common/cmd_net.c | 20

[U-Boot] [PATCH v2] net: Fix TftpStart() ip:filename bug

2008-12-01 Thread Peter Tyser
: 0x10 Loading: * TFTP error: 'File not found' (1) Starting again TftpStart() was modified to not modify the 'BootFile' string. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- doah, forgot SOB net/tftp.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-

[U-Boot] [PATCH v2] Remove unused CONFIG_ADDR_STREAMING defines

2008-12-01 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- doah, forgot SOB include/configs/ATUM8548.h|1 - include/configs/MPC8536DS.h |1 - include/configs/MPC8540ADS.h |1 - include/configs/MPC8540EVAL.h |1 - include/configs/MPC8541CDS.h |1 - include/configs/MPC85

Re: [U-Boot] [PATCH v3 2/2] XPedite5200 board support

2008-12-01 Thread Peter Tyser
On Mon, 2008-12-01 at 14:17 -0600, Jon Loeliger wrote: > On Mon, 2008-12-01 at 13:47 -0600, Peter Tyser wrote: > > Initial support for Extreme Engineering Solutions XPedite5200 - > > a MPC8548-based PMC single board computer. > > > > Signed-off-by: Pe

[U-Boot] [PATCH] Remove unused CONFIG_ADDR_STREAMING defines

2008-12-01 Thread Peter Tyser
--- include/configs/ATUM8548.h|1 - include/configs/MPC8536DS.h |1 - include/configs/MPC8540ADS.h |1 - include/configs/MPC8540EVAL.h |1 - include/configs/MPC8541CDS.h |1 - include/configs/MPC8544DS.h |1 - include/configs/MPC8548CDS.h |1 - include/config

[U-Boot] [PATCH v3 2/2] XPedite5200 board support

2008-12-01 Thread Peter Tyser
Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile

[U-Boot] [PATCH v3 1/2] 85xx: Add PORDEVSR_PCI1 define

2008-12-01 Thread Peter Tyser
Add define used to determine if PCI1 interface is in PCI or PCIX mode. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- include/asm-ppc/immap_85xx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h

[U-Boot] [PATCH v3 0/2] 85xx: Support for XPedite5200

2008-12-01 Thread Peter Tyser
, Peter Peter Tyser (2): 85xx: Add PORDEVSR_PCI1 define XPedite5200 board support MAINTAINERS |1 + MAKEALL |1 + Makefile|3 + board/xes/common/Makefile |3 +- board/xes/common/actl_nand.c

[U-Boot] [PATCH v4 2/3] Add support for Maxim's DS4510 I2C device

2008-12-01 Thread Peter Tyser
CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 400 + includ

[U-Boot] [PATCH v4 1/3] Add support for PCA953x I2C gpio devices

2008-12-01 Thread Peter Tyser
rovides summary information for the given pca953x device. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 218 +

[U-Boot] [PATCH v4 0/3]Support for XPedite5370 and misc GPIO

2008-12-01 Thread Peter Tyser
ixed gur->devdisr typo for PCIe2 - Fixed some lines over 80 chars - Fixed multiline comment style - Cleaned up environment defines Changes since v3: - Removed CONFIG_L1_INIT_RAM reference Peter Tyser (3): Add support for PCA953x I2C gpio devices Add support for Maxim's DS4510 I2C device

[U-Boot] [PATCH] net: Fix TftpStart() ip:filename bug

2008-12-01 Thread Peter Tyser
The TftpStart() function modifies the 'BootFile' string when 'BootFile' contains both an IP address and filename (eg 1.2.3.4:/path/file). This causes subsequent calls to TftpStart to incorrectly parse the TFTP filename and server IP address to use. For example: => tftp 0x10 10.52.0.62:/home/pt

[U-Boot] [PATCH 2/2] net: Add additional IP fragmentation check

2008-12-01 Thread Peter Tyser
Ignore IP packets which have the "more fragments" flag bit set. This flag indicates the IP packet is fragmented and must be ignored by U-Boot. --- net/net.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/net.c b/net/net.c index cf1f4fa..b8e09e8 100644 --- a/net/net

[U-Boot] [PATCH 0/2] net: Additional IP fragmentation check

2008-12-01 Thread Peter Tyser
ory display of &NetFragBuf, but the assembled packet was not making its way up the stack FWIW. Peter Tyser (2): net: Define IP flag field values net: Add additional IP fragmentation check include/net.h |6 ++ net/net.c |8 +--

[U-Boot] [PATCH 1/2] net: Define IP flag field values

2008-12-01 Thread Peter Tyser
These defines were pulled from the "Add simple IP/UDP fragmentation support" patch from Frank Haverkamp <[EMAIL PROTECTED]>. --- include/net.h |6 ++ net/net.c |6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/include/net.h b/include/net.h index a5a256b..199

[U-Boot] [PATCH v2 2/2] XPedite5200 board support

2008-11-26 Thread Peter Tyser
Initial support for Extreme Engineering Solutions XPedite5200 - a MPC8548-based PMC single board computer. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile

[U-Boot] [PATCH v2 1/2] 85xx: Add PORDEVSR_PCI1 define

2008-11-26 Thread Peter Tyser
Add define used to determine if PCI1 interface is in PCI or PCIX mode. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- include/asm-ppc/immap_85xx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h

[U-Boot] [PATCH v2 0/2] 85xx: Support for XPedite5200

2008-11-26 Thread Peter Tyser
alignment by spaces to alignment by tabs - Fixed typos in host_agent_cfg/io_port_cfg - Fixed variable declaration in code - Fixed some lines longer than 80 chars - Cleaned up environment configuration defines - Fixed multiline comment style Best, Peter Peter Tyser (2): 85xx: Add PORDEVSR_PCI1 define

[U-Boot] [PATCH v3 2/3] Add support for Maxim's DS4510 I2C device

2008-11-26 Thread Peter Tyser
CONFIG_DS4510_RST defines add additional sub-commands to the ds4510 command when defined. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- README|4 + drivers/misc/Makefile |1 + drivers/misc/ds4510.c | 400 + includ

[U-Boot] [PATCH v3 1/3] Add support for PCA953x I2C gpio devices

2008-11-26 Thread Peter Tyser
rovides summary information for the given pca953x device. Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- Makefile |2 + README |9 ++ drivers/gpio/Makefile | 47 ++ drivers/gpio/pca953x.c | 218 +

[U-Boot] [PATCH v3 0/3]Support for XPedite5370 and misc GPIO

2008-11-26 Thread Peter Tyser
ixed gur->devdisr typo for PCIe2 - Fixed some lines over 80 chars - Fixed multiline comment style - Cleaned up environment defines Peter Tyser (3): Add support for PCA953x I2C gpio devices Add support for Maxim's DS4510 I2C device XPedite5370 board support MAINTAINERS

[U-Boot] [PATCH] cmd_mem: Remove unused variable

2008-11-24 Thread Peter Tyser
Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> --- common/cmd_mem.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/common/cmd_mem.c b/common/cmd_mem.c index d7666c2..400cfd7 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@ -1175,7 +1175,6 @@ int do

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-11-19 Thread Peter Tyser
Hi Jon, On Wed, 2008-11-19 at 11:29 -0600, Jon Loeliger wrote: > Peter Tyser wrote: > > >>> We have the standard Freescale DDR printf's turned into debug as that is > >>> much, much more verbose than the output above. > >> Indeed :-( > > Hrm. O

Re: [U-Boot] [PATCH 2/2] XPedite5200 board support

2008-11-18 Thread Peter Tyser
On Wed, 2008-11-19 at 00:36 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <[EMAIL PROTECTED]> you wrote: > > Initial support for Extreme Engineering Solutions XPedite5200 - > > a MPC8548-based PMC single board computer. > > > > Signe

Re: [U-Boot] [PATCH 0/2] 85xx: Support for XPedite5200

2008-11-18 Thread Peter Tyser
On Wed, 2008-11-19 at 00:28 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <[EMAIL PROTECTED]> you wrote: > > These 2 patches add support for the XPedite5200 SBC - > > a MPC8548-based PMC card made by Extreme Engineering > > Solutions. > &g

Re: [U-Boot] [PATCH 3/3] XPedite5370 board support

2008-11-18 Thread Peter Tyser
On Tue, 2008-11-18 at 23:20 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <[EMAIL PROTECTED]> you wrote: > > > > This information is very useful to a customer and doesn't add much as > > far as output. No newlines at least. The outpu

<    4   5   6   7   8   9   10   >