Re: [U-Boot] [PATCH 1/1] at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000

2009-04-14 Thread Eric BENARD
Jean-Christophe PLAGNIOL-VILLARD a écrit : On 14:04 Mon 06 Apr , Eric BENARD wrote: Jean-Christophe PLAGNIOL-VILLARD a écrit : The timer has been rewrote with a precision at ~0,18% works fine on an 9260 and solves TFTP timeout problem. Thanks for the test btw: could you specify on wich

[U-Boot] Please pull u-boot-ppc4xx

2009-04-14 Thread Stefan Roese
Hi Wolfgang, please pull a fix for ppc4xx: The following changes since commit f75a729b5c1434d5a5bbf453b1b699bf1c3ffbce: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-blackfin are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git

Re: [U-Boot] [PATCH u-boot git] CMD_UBI != MTD_PARTITIONS

2009-04-14 Thread Stefan Roese
On Monday 13 April 2009, David Brownell wrote: From: David Brownell dbrown...@users.sourceforge.net Fix dependency goofage: it should certainly be possible to have the partition support without bringing in UBI commands. Signed-off-by: David Brownell dbrown...@users.sourceforge.net

Re: [U-Boot] Ethernet receive issue in PPC440

2009-04-14 Thread Stefan Roese
On Friday 10 April 2009, prathika wrote: i am porting uboot in PowerPC 440. i tried using the ping command.i have connected my board to PC via cross cable. When i monitor on the PC side using Network Monitor, the PC receives the ARP request packet and the PC is replying with acknowledgement.

Re: [U-Boot] Question about M29W128G CFI QRY bug

2009-04-14 Thread Stefan Roese
Hi Richard, On Monday 13 April 2009, Richard Retanubun wrote: As a follow up, This hack seems to fix the issue. diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index 631b969..d386143 100644 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -1691,7 +1691,7 @@

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

2009-04-14 Thread Wolfgang Denk
Dear David Brownell, In message 200904131617.55202.davi...@pacbell.net you wrote: COBJS= timer.o ether.o lxt972.o dp83848.o -SOBJS= lowlevel_init.o reset.o +SOBJS= reset.o + +ifndef CONFIG_SKIP_LOWLEVEL_INIT + SOBJS += lowlevel_init.o +endif Please don't do

Re: [U-Boot] Help!Some memory doesn't work on PPC405Ex based board!

2009-04-14 Thread Stefan Roese
Hi Sun, On Tuesday 14 April 2009, SunNeo wrote: My platform uses the MICRON MT47H256M8THN DDRII SDRAM and the DDRII SDRAM is soldered on the board. As I said, my board was similar with Kilauea evb, so I created my configuration header file from Kilauea's at U-Boot. In the configuration

[U-Boot] Zoom2 respin II

2009-04-14 Thread Tom
Soon I will be posting a rebase of omap3 zoom2 board with fixes and enhancements per comments. Tom Big changes. GPIO Interface Ported from gpio code from linux. Used in zoom2 debug_board and led code. Add documenation to doc/README.omap3 LED Interface Use existing status_led interface. Add

[U-Boot] [PATCH 01/10] ZOOM2 Add initial support for Zoom2

2009-04-14 Thread Tom Rix
Zoom2 is a new board from Texas Instruments and LogicPD The logicpd web site is a good source for general information on this board. Please start looking here if the below links are broken. http://www.logicpd.com This is a pdf of the product

[U-Boot] [PATCH 02/10] OMAP3 Port kernel omap gpio interface.

2009-04-14 Thread Tom Rix
Port the linux kernel's omap gpio interface to u-boot. The orignal source is in linux/arch/arm/plat-omap/gpio.c See doc/README.omap3 for instructions on use. Signed-off-by: Tom Rix tom@windriver.com --- cpu/arm_cortexa8/omap3/Makefile |2 +- cpu/arm_cortexa8/omap3/gpio.c | 177

[U-Boot] [PATCH 03/10] ZOOM2 Add support for debug board detection.

2009-04-14 Thread Tom Rix
The logicpd web site is a good source for general information on this board. Please start looking here if the below links are broken. http://www.logicpd.com This is a pdf of the product http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf This is a pdf of the product

[U-Boot] [PATCH 04/10] ZOOM2 Add serial support.

2009-04-14 Thread Tom Rix
Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board. The default serial is from the USB connector on left side of the debug board. The USB connector will produce 2 of the 4 UARTS. On your host pick the first enumeration. The serial port set up is the same with Zoom1.

[U-Boot] [PATCH 06/10] LED Add documentation describing the status_led and colour led API.

2009-04-14 Thread Tom Rix
This document describes the u-boot status LED API. This allows common u-boot commands to use a board's leds to provide status for activities like booting and downloading files. Signed-off-by: Tom Rix tom@windriver.com --- doc/README.LED | 78

[U-Boot] [PATCH 05/10] ZOOM2: rename timer divisor

2009-04-14 Thread Tom Rix
Divisor field is called PTV not PVT. This change is needed because of earlier OMAP commit 81472d893fa565c9d300928a40e504a689bde131 of the same name Signed-off-by: Tom Rix tom@windriver.com --- include/configs/omap3_zoom2.h |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-)

[U-Boot] [PATCH 07/10] ARM Add blue colour LED to status_led.

2009-04-14 Thread Tom Rix
There is exiting support for red,yellow,green but no blue. The main LED on the zoom2 is a blue LED. Signed-off-by: Tom Rix tom@windriver.com --- include/status_led.h |4 lib_arm/board.c |4 2 files changed, 8 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 08/10] ZOOM2 Add led support.

2009-04-14 Thread Tom Rix
This patch controls the large LED on the top left of the zoom2. Signed-off-by: Tom Rix tom@windriver.com --- board/omap3/zoom2/Makefile|8 ++- board/omap3/zoom2/led.c | 125 + board/omap3/zoom2/zoom2.c |4 +-

[U-Boot] [PATCH 09/10] ZOOM1 Remove more legacy NAND defines.

2009-04-14 Thread Tom Rix
These legacy NAND defines are no longer needed by this target. Signed-off-by: Tom Rix tom@windriver.com --- include/configs/omap3_zoom1.h | 13 - 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a/include/configs/omap3_zoom1.h b/include/configs/omap3_zoom1.h index

[U-Boot] [PATCH 10/10] OMAP Consolidate common u-boot.lds to cpu layer.

2009-04-14 Thread Tom Rix
The u-boot.lds file is common for all omap boards. Move a cleaned up version to the cpu layer and add makefile logic to use it. Signed-off-by: Tom Rix tom@windriver.com --- board/omap3/beagle/u-boot.lds | 63 - board/omap3/evm/u-boot.lds|

Re: [U-Boot] [PATCH v3] Marvell MV88E61XX Switch Driver support

2009-04-14 Thread Prafulla Wadaskar
Dear Jean, Thanks for your comments Please see my inlined reply From: Jean-Christophe PLAGNIOL-VILLARD [plagn...@jcrosoft.com] Sent: Tuesday, April 14, 2009 3:49 AM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; Ashish Karkare; Ronen Shitrit Subject: Re:

[U-Boot] Compiler error with BUILD_DIR

2009-04-14 Thread Günter Leonhardt
Hello, I'am getting an compiler error if I use a seperate BUILD_DIR: /home/gl/swserver/work/LINUX/ELINOS_PROJECTS/ELINOS_50/demoF302P/src/u-boot/build/tools/fdt.c:81: error: conflicting types for âfdt_offset_ptrâ /usr/include/../include/libfdt.h:125: error: previous declaration of

Re: [U-Boot] Compiler error with BUILD_DIR

2009-04-14 Thread Wolfgang Denk
Dear Günter, In message d0b748ccd5df144ca5c56a9d860a31341de...@men-exch1.intra.men.de you wrote: Hello, I'am getting an compiler error if I use a seperate BUILD_DIR: /home/gl/swserver/work/LINUX/ELINOS_PROJECTS/ELINOS_50/demoF302P/src/u-boot /build/tools/fdt.c:81: error: conflicting

[U-Boot] [PATCH] UBIFS: fix recovery bug

2009-04-14 Thread Stefan Roese
From: Adrian Hunter adrian.hun...@nokia.com UBIFS did not recovery in a situation in which it could have. The relevant function assumed there could not be more nodes in an eraseblock after a corrupted node, but in fact the last (NAND) page written might contain anything. The correct approach is

[U-Boot] [PATCH] UBIFS: Remove tnc_commit.c which is not used in the read-only version

2009-04-14 Thread Stefan Roese
I missed removing this file while implementing the UBIFS support. It's not referenced at all, so let's remove it. Thanks to Artem Bityutskiy for spotting. Signed-off-by: Stefan Roese s...@denx.de --- fs/ubifs/tnc_commit.c | 1102 - 1 files changed,

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

2009-04-14 Thread David Brownell
On Tuesday 14 April 2009, Wolfgang Denk wrote: Please don't do it like this. Please use the same style like everybody else. Having to guess .. you mean don't indent? == CUT HERE From: David Brownell dbrown...@users.sourceforge.net Don't needlessly include lowlevel init code; that's

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

2009-04-14 Thread Magnus Lilja
Hi 2009/4/14 David Brownell davi...@pacbell.net: On Tuesday 14 April 2009, Wolfgang Denk wrote: Please don't do it like this. Please use the same style like everybody else. Having to guess .. you mean don't indent? == CUT HERE From: David Brownell dbrown...@users.sourceforge.net

Re: [U-Boot] [PATCH v2] Marvell MV88F6281GTW_GE Board support

2009-04-14 Thread Prafulla Wadaskar
Hi all, This is much cleaner and smaller patch. Any comments or acceptance or flag to resend are welcomed. Regards.. Prafulla . . -Original Message- From: Prafulla Wadaskar [mailto:prafu...@marvell.com] Sent: Wednesday, April 08, 2009 9:48 PM To: u-boot@lists.denx.de Cc: Ronen

[U-Boot] [PATCH v2] OMAP3: Remove legacy NAND defines

2009-04-14 Thread Dirk Behme
Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora. Signed-off-by: Dirk Behme dirk.be...@googlemail.com --- For Zoom1 it was already removed by http://lists.denx.de/pipermail/u-boot/2009-April/050150.html http://lists.denx.de/pipermail/u-boot/2009-April/050871.html Changes

Re: [U-Boot] Uboot md crash on PDK

2009-04-14 Thread alfred steele
Thanks! But should a crash happen if i am trying to read a non-reserved memory which 0x10 is. Can you tell me how do you choose a address in CSDO RAM to be appropiate for loading uImage and execute it. -Alfred. On Mon, Apr 13, 2009 at 12:24 PM, Magnus Lilja lilja.mag...@gmail.com wrote:

Re: [U-Boot] Uboot md crash on PDK

2009-04-14 Thread Magnus Lilja
2009/4/14 alfred steele alfred.jaq...@gmail.com: Thanks! But should a crash happen if i am trying to read a non-reserved memory which  0x10 is. That's up to the hardware (i.e. i.MX31), I don't know the details but crashing seems perfectly fine with me (or generating a data abort

Re: [U-Boot] Uboot md crash on PDK

2009-04-14 Thread alfred steele
Thanks. Apologies for top posting. -Alfred. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2009-04-14 Thread Peter Tyser
+What:Individual I2C commands +When:April 2009 +Why: Per the U-Boot README, individual I2C commands such as imd, imm, + imw, etc are deprecated. The single i2c command which is + currently enabled via CONFIG_I2C_CMD_TREE contains the same + functionality as the

Re: [U-Boot] Question about M29W128G CFI QRY bug

2009-04-14 Thread Richard Retanubun
Hi Stefan, Did you take a look at the CONFIG_SYS_FLASH_CFI_AMD_RESET define? I suggest you give it a try and let me know if this helps. This does help but for the wrong reason: #ifdef CONFIG_SYS_FLASH_CFI_AMD_RESET /* needed for STM_ID_29W320DB on UC100 */ # undef FLASH_CMD_RESET # define

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

2009-04-14 Thread Peter Tyser
Hi Wolfgang, On Sat, 2009-04-04 at 01:20 +0200, Wolfgang Denk wrote: Dear Peter Tyser, In message 1236988492-21295-28-git-send-email-pty...@xes-inc.com you wrote: Add support for compiling the host tools in the tools directory using the MinGW toolchain. This produces executables which

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

2009-04-14 Thread Mike Frysinger
On Tuesday 14 April 2009 18:52:30 Peter Tyser wrote: On Sat, 2009-04-04 at 01:20 +0200, Wolfgang Denk wrote: In message Peter Tyser wrote: Add support for compiling the host tools in the tools directory using the MinGW toolchain. This produces executables which can be used on standard

[U-Boot] MMC driver for mx31

2009-04-14 Thread alfred steele
Hi, Is there an available driver for MMC/SD for the mx31 pdk board. If not, what would be the closest candidate for porting it over. Thanks. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Ethernet receive issue in PPC440

2009-04-14 Thread prathika
I am using PowerPC 440 EP. The PHY I am using is DP83848. I have enabled RMII mode. I am making sure that all the registers are configured for this mode only, by reading back the registers. First i tried enabling internal loopback in PowerPC by enabling the ILE bit in EMAC0_MR1 register.