[U-Boot] [PATCH] OMAP3: Beagle: Set pinmux conditionally for Rev C boards

2009-04-05 Thread Dirk Behme
The Beagle Rev C boards pull UART2 from an alternate set of balls. Signed-off-by: Steve Sakoman st...@sakoman.com Signed-off-by: Dirk Behme dirk.be...@googlemail.com --- board/omap3/beagle/beagle.c |4 board/omap3/beagle/beagle.h | 25 + 2 files changed, 21

Re: [U-Boot] [PATCH v2] Support for PXA27X UDC.

2009-04-05 Thread Remy Bohmer
Hello All, Is this going to go through the USB or through the PXA tree? USB I guess But the patch will need to rebase due to the last usb dev USB is fine with me. Kind Regards, Remy ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH 1/5] mmc: clean up help texts

2009-04-05 Thread Rabin Vincent
Remove some repeated words and superfluous newlines in the mmc command help entries. Signed-off-by: Rabin Vincent ra...@rab.in --- common/cmd_mmc.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index f1fa32f..bd55ff1 100644

[U-Boot] [PATCH 2/5] mmc: check find_mmc_device return value

2009-04-05 Thread Rabin Vincent
find_mmc_device returns NULL if an invalid device number is specified. Check for this to avoid dereferencing NULL pointers. Signed-off-by: Rabin Vincent ra...@rab.in --- common/cmd_mmc.c |9 + drivers/mmc/mmc.c |2 +- 2 files changed, 10 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH 3/5] mmc: use lldiv to fix arm eabi build

2009-04-05 Thread Rabin Vincent
The generic MMC core uses direct long long divisions, which do not build with ARM EABI toolchains. Use lldiv() instead, which works everywhere. Signed-off-by: Rabin Vincent ra...@rab.in --- drivers/mmc/mmc.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git

[U-Boot] [PATCH 4/5] mmc: fix response decoding on little endian

2009-04-05 Thread Rabin Vincent
The mmc code defines the response as an array of chars. However, it access the response bytes both as (i) an array of four uints (with casts) and (ii) as individual chars. The former case is used more often, including by the driver when it assigns the response. The char-wise accesses are broken

[U-Boot] [PATCH 5/5] mmc: drop unnecessary casts

2009-04-05 Thread Rabin Vincent
Now that response is a uint, we can drop all the casts. Signed-off-by: Rabin Vincent ra...@rab.in --- drivers/mmc/fsl_esdhc.c | 10 +- drivers/mmc/mmc.c | 20 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/drivers/mmc/fsl_esdhc.c

Re: [U-Boot] [PATCH 1/1] make MODEM SUPPORT generic instead of duplicate it

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:32 Thu 02 Apr , Wolfgang Denk wrote: Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1236447277-18574-1-git-send-email-plagn...@jcrosoft.com you wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- common/Makefile |1 + common/modem.c |

Re: [U-Boot] [PATCH] sf: atmel: implement power-of-two write/erase funcs

2009-04-05 Thread Todor I Mollov
On Saturday 04 April 2009 09:39:14 Wolfgang Denk wrote: In message Mike Frysinger wrote: From: Todor I Mollov tmol...@ucsd.edu Signed-off-by: Todor I Mollov tmol...@ucsd.edu Signed-off-by: Mike Frysinger vap...@gentoo.org CC: Haavard Skinnemoen haavard.skinnem...@atmel.com ---

[U-Boot] [PATCH 2/2 V5] bdinfo: coding style cleanup

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- V4 - V5 Rebase common/cmd_bdinfo.c |4 +++ lib_arm/bdinfo.c|4 +- lib_avr32/bdinfo.c | 16 +++--- lib_blackfin/bdinfo.c | 24 ++-- lib_i386/bdinfo.c | 16

[U-Boot] [PATCH 1/2 V5] cmd_bdinfo: move implementation to arch instead of common

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
introduce 3 new weak functions board_bdinfo, cpu_bdinfo and soc_bdinfo to allow board, cpu and soc to print more information Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Acked-by: Mike Frysinger vap...@gentoo.org Acked-by: Haavard Skinnemoen haavard.skinnem...@atmel.com

[U-Boot] [PATCH 2/3] arm: clean cache management

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
unify arm cache management except for non standard cache as ARM7TDMI Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- Comment fix Best Regards, J. board/armltd/integratorap/split_by_variant.sh | 18 - cpu/arm1136/cpu.c | 46

[U-Boot] ARM Pull Request

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, Please pull The following changes since commit 23e4af49e066a53cd3e3659b68ef90572d88de84: Guennadi Liakhovetski (1): ARM: add the imx31_phycore_eet target to MAINTAINERS are available in the git repository at: git://git.denx.de/u-boot-arm.git master Dirk Behme (1):

Re: [U-Boot] [PATCH] OMAP3: Beagle: Set pinmux conditionally for Rev C boards

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:46 Sun 05 Apr , Dirk Behme wrote: The Beagle Rev C boards pull UART2 from an alternate set of balls. Signed-off-by: Steve Sakoman st...@sakoman.com Signed-off-by: Dirk Behme dirk.be...@googlemail.com --- board/omap3/beagle/beagle.c |4 board/omap3/beagle/beagle.h |

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

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 07:38 Sun 05 Apr , Dirk Behme wrote: 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 Scott can I apply

Re: [U-Boot] [PATCH v2] OMAP3: Update Overo pin mux for new expansion board

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:15 Mon 30 Mar , Dirk Behme wrote: A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and switches. This patch changes the pinmux configuration for those pins. They were previously set up for unused MMC3_DAT4-7. Signed-off-by: Steve Sakoman st...@sakoman.com

Re: [U-Boot] [PATCH 2/2] at91: Add support for esd MEESC board

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:24 Fri 27 Mar , Daniel Gorsulowski wrote: This patch adds support for MEESC board from esd gmbh. The MEESC is based on an Atmel AT91SAM9263 SoC. Signed-off-by: Daniel Gorsulowski daniel.gorsulow...@esd.eu --- please rebase your patch against git://git.denx.de/u-boot-at91.git

Re: [U-Boot] ARM Pull Request

2009-04-05 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: Hi Wolfgang, Please pull The following changes since commit 23e4af49e066a53cd3e3659b68ef90572d88de84: Guennadi Liakhovetski (1): ARM: add the imx31_phycore_eet target to MAINTAINERS are available in the git

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

2009-04-05 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: On 07:38 Sun 05 Apr , Dirk Behme wrote: 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

Re: [U-Boot] [PATCH] OMAP3: Beagle: Set pinmux conditionally for Rev C boards

2009-04-05 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: On 08:46 Sun 05 Apr , Dirk Behme wrote: The Beagle Rev C boards pull UART2 from an alternate set of balls. Signed-off-by: Steve Sakoman st...@sakoman.com Signed-off-by: Dirk Behme dirk.be...@googlemail.com ---

[U-Boot] [PATCH v2] OMAP3: Beagle: Set pinmux conditionally for Rev C boards

2009-04-05 Thread Dirk Behme
The Beagle Rev C boards pull UART2 from an alternate set of balls. Signed-off-by: Steve Sakoman st...@sakoman.com Signed-off-by: Dirk Behme dirk.be...@googlemail.com --- Changes in v2: - Add space between if and (beagle_revision_c) board/omap3/beagle/beagle.c |4

Re: [U-Boot] [PATCH v3] Add imls utility command

2009-04-05 Thread Marco
Hi Wolfgang, first of all thank you for your comments. Wolfgang Denk ha scritto: Dear Marco, In message 49d74e7b@gmail.com you wrote: Fixed a memory leak in image_verify_header function. Used the functions image_get_() from image.h. Fixed two sector boundary misalignment while

[U-Boot] U-boot SDHC driver on IMX31 PDK

2009-04-05 Thread alfred steele
Hi, Is there a way to access a SD/MMC card from uboot using the FAT32 file system on the mx31 3stack/pdk board. In other words, does it have the minimal SDHC driver support . FAT32, i guess, has been an integral part of the uboot mainline since quite some time. Thanks, Alfred.

[U-Boot] generic nand_load.S for mx31

2009-04-05 Thread alfred steele
Hi, There is a file cpu/arm1136/mx31/nand_load.S which performs some startup functions for Copy image from flash to SDRAM etc..It does not reinitialize the DDR though. Although i haven't dugged up the details yet, could someone tell me what is the difference between nand_boot.c and

Re: [U-Boot] generic nand_load.S for mx31

2009-04-05 Thread Magnus Lilja
2009/4/5 alfred steele alfred.jaq...@gmail.com: Hi, There is a file  cpu/arm1136/mx31/nand_load.S which performs some startup functions for Copy image from flash to SDRAM  etc..It does not reinitialize the DDR though. Although i haven't dugged up the details yet, could someone tell me what

Re: [U-Boot] [PATCH v3] Add imls utility command

2009-04-05 Thread Wolfgang Denk
Dear Marco, In message 49d8e8f3.4010...@gmail.com you wrote: + for (j = sectoroffset; j sectorcount; ++j) { i. e. add if (lseek(fd, j*sectorsize, SEEK_SET) != j*sectorsize) { error handling goes here } Mmm...I don't well

Re: [U-Boot] [RFC 3/5] Add NAND SPL entries to gitignore.

2009-04-05 Thread Magnus Lilja
Hi 2009/4/3 Scott Wood scottw...@freescale.com: Magnus Lilja wrote: diff --git a/nand_spl/.gitignore b/nand_spl/.gitignore new file mode 100644 index 000..af5f02b --- /dev/null +++ b/nand_spl/.gitignore @@ -0,0 +1,7 @@ +# NAND-SPL files +/u-boot-spl +/u-boot-spl-aligned.bin

Re: [U-Boot] [PATCH 1/2 V5] cmd_bdinfo: move implementation to arch instead of common

2009-04-05 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1238927618-15438-1-git-send-email-plagn...@jcrosoft.com you wrote: introduce 3 new weak functions board_bdinfo, cpu_bdinfo and soc_bdinfo to allow board, cpu and soc to print more information Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD

Re: [U-Boot] ARM Pull Request

2009-04-05 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090405105630.ga11...@game.jcrosoft.org you wrote: Hi Wolfgang, Please pull The following changes since commit 23e4af49e066a53cd3e3659b68ef90572d88de84: Guennadi Liakhovetski (1): ARM: add the imx31_phycore_eet target to

Re: [U-Boot] [PATCH 1/2 V5] cmd_bdinfo: move implementation to arch instead of common

2009-04-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:01 Sun 05 Apr , Wolfgang Denk wrote: Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1238927618-15438-1-git-send-email-plagn...@jcrosoft.com you wrote: introduce 3 new weak functions board_bdinfo, cpu_bdinfo and soc_bdinfo to allow board, cpu and soc to print more

Re: [U-Boot] [PATCH] Add support for Faraday RTC IP FTRTC

2009-04-05 Thread Po-Yu Chuang
Hi Detlev Zundel, Thanks for your kindly help. I will fix my code and submit again next time. Thank you! regards, Po-Yu Chuang 2009/4/2 Detlev Zundel d...@denx.de: Hi Chuang, I am a newbie and I have not realized all the rules, so I have some questions. On Tue Mar 31 12:24:03 CEST