Re: [U-Boot] [PATCH 1/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-04-12 Thread apgmoorthy
Hi Scott, On Tuesday, March 31, 2009 4:04 AM Scott Wood Wrote : Note that there are a couple of board files (apollon and nmdk8815) that use the OneNAND loader that do not define CONFIG_SYS_MONITOR_LEN. I've added the maintainers to the Cc: list. CONFIG_SYS_MONITOR_LEN is not defined in

[U-Boot] [PATCH v5] [RESEND] Add imls utility command

2009-04-12 Thread Marco
Signed-off-by: Marco Stornelli marco.storne...@gmail.com --- diff --git a/tools/imls/Makefile b/tools/imls/Makefile new file mode 100644 index 000..d654658 --- /dev/null +++ b/tools/imls/Makefile @@ -0,0 +1,106 @@ +# +# (C) Copyright 2009 Marco Stornelli marco.storne...@gmail.com +# +# This

[U-Boot] [PATCH u-boot git] dm9000 EEPROM reading bugfix

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Make the U-Boot dm9000 driver read addresses from EEPROM just like Linux does ... read six bytes, instead of reading twelve bytes then discarding every one. Using the right Ethernet address is a big win. Signed-off-by: David Brownell

[U-Boot] [PATCH u-boot git] fix DaVinci NS16550_REG_SIZE regression

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Update the DaVinci DM6446 boards to use the new convention for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed from the original 4 bytes, but these chips are little-endian. (Resolves a regression added recently by the include/ns16550.h

[U-Boot] [PATCH u-boot git] minor DaVinci clock cleanup

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Minor cleanup to clock-related defines for DaVinci DM6446 boards: - CONFIG_SYS_CLK_FREQ is unused; remove it. - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK On DM6446 both of those peripheral clocks actually come from the

[U-Boot] [PATCH u-boot git] DaVinci Ethernet cleanup

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Chips without the EMAC controller won't need the utilities it uses to read an Ethernet address from EEPROM; so don't include them needlessly. Use is_valid_ether() to validate the address from EEPROM. All-zero addresses aren't the only invalid

[U-Boot] [PATCH u-boot git] there are non-DM6446 DaVinci chips

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Start updating DaVinci board support to reduce dependencies on dm644x chips and EVM-like boards ... beginning with psc.c, which hosts a bunch of those dependencies: - Pinmux registers and their contents are SoC-specific, and are also

[U-Boot] [PATCH u-boot git] DaVinci now respects SKIP_LOWLEVEL_INIT

2009-04-12 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Don't needlessly include lowlevel init code; that's only really needed with boot-from NOR (not boot-from-NAND). The 2nd stage loader (UBL) handles that before it loads U-Boot. Signed-off-by: David Brownell dbrown...@users.sourceforge.net ---

Re: [U-Boot] [PATCH u-boot git] dm9000 EEPROM reading bugfix

2009-04-12 Thread David Brownell
On Sunday 12 April 2009, David Brownell wrote: ... read six bytes, instead of reading twelve bytes then discarding every one. Urgh, editing goof. Should read discarding every other one. ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH] cmd_nand: drop duplicate NULL ptr check

2009-04-12 Thread Mike Frysinger
The first if statement checks for NULL ptrs, so there is no need to check it again in later else cases (such as .oob). Signed-off-by: Mike Frysinger vap...@gentoo.org CC: Scott Wood scottw...@freescale.com --- common/cmd_nand.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff