Re: [U-Boot] [PATCH 1/8] ZOOM2 Add initial support for Zoom2

2009-04-04 Thread Dirk Behme
Hi Tom, Tom Rix wrote: > Zoom2 is a new board from Texas Instruments and LogicPD > This is the product description > http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp > > This patch provides a zoom2 base target by copying zoom1 and by making some > ob

Re: [U-Boot] [PATCH 3/8] ZOOM2 Add support for debug board detection.

2009-04-04 Thread Dirk Behme
Hi Tom, Tom Rix wrote: > https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP > > The zoom2 has an auxillary board that contains the serial, net, jtag and > battery simulator. This change supports a runtime check if the debug board is > connected. >

[U-Boot] [PATCH] at91sam9/at91cap: add new spi framework and spi flash support

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
The new Framework is not yet activated by default, it will be next release at the same time of the removal of the DATAFLASH support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/afeb9260/afeb9260.c | 40 + board/atmel/at91cap9adk/at91cap9

[U-Boot] u-boot Tree Boken

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi all After the merge of the tools/Makefile cleanup the current tree is broken /work/u-boot-arm/lib_generic/crc32.c:157: error: conflicting types for 'crc32' /usr/include/zlib.h:1305: error: previous declaration of 'crc32' was here make[1]: *** No rule to make target `/work/u-bo

Re: [U-Boot] u-boot Tree Boken

2009-04-04 Thread Mike Frysinger
On Saturday 04 April 2009 06:27:01 Jean-Christophe PLAGNIOL-VILLARD wrote: > Hi all > > After the merge of the tools/Makefile cleanup > > the current tree is broken > > /work/u-boot-arm/lib_generic/crc32.c:157: error: conflicting types for > 'crc32' /usr/include/zlib.h:1305: error: prev

[U-Boot] [PATCH 2/2] rename include/zlib.h to include/u-boot/zlib.h

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Some systems have zlib.h installed in /usr/include/. This isn't the desired file (we want the one in include/zlib.h). This will avoid the conflict. This fixes the host tools building problem by creating a new directory for U-Boot specific header files. Signed-off-by: Jean-Christophe PLAGNIOL-VILLA

[U-Boot] [PATCH 1/2] tools/Makefile: fix image.c dependancy location

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- tools/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 122e5bb..12f0216 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -190,7 +190,7 @@ $(obj)bin2header$(SFX): $(obj)bi

Re: [U-Boot] [PATCH 1/2] tools/Makefile: fix image.c dependancy location

2009-04-04 Thread Mike Frysinger
On Saturday 04 April 2009 06:46:31 Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing li

Re: [U-Boot] [PATCH 2/2 V2] rename include/zlib.h to include/u-boot/zlib.h

2009-04-04 Thread Mike Frysinger
On Saturday 04 April 2009 06:49:11 Jean-Christophe PLAGNIOL-VILLARD wrote: > Some systems have zlib.h installed in /usr/include/. This isn't the > desired file (we want the one in include/zlib.h). This will avoid the > conflict. i would say "... desired file for u-boot code" > Signed-off-by: Jean

[U-Boot] [PATCH 2/2 V2] rename include/zlib.h to include/u-boot/zlib.h

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Some systems have zlib.h installed in /usr/include/. This isn't the desired file (we want the one in include/zlib.h). This will avoid the conflict. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Fix commint Message Best Regards, J. common/cmd_bootm.c |2 +- fs/cramfs/uncompres

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

2009-04-04 Thread Mike Frysinger
From: Todor I Mollov Signed-off-by: Todor I Mollov Signed-off-by: Mike Frysinger CC: Haavard Skinnemoen --- drivers/mtd/spi/atmel.c | 139 +++ 1 files changed, 139 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/atmel.c b/drivers/mtd/sp

[U-Boot] [PATCH] tools: add ncb to gitignore

2009-04-04 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- tools/.gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tools/.gitignore b/tools/.gitignore index 3a4136b..03f54ef 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -4,6 +4,7 @@ /img2srec /mkimage /mpc86x_clk +/ncb /ncp

Re: [U-Boot] [PATCH 1/8] ZOOM2 Add initial support for Zoom2

2009-04-04 Thread Tom
Dirk Behme wrote: > Hi Tom, > > Tom Rix wrote: >> Zoom2 is a new board from Texas Instruments and LogicPD >> This is the product description >> http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp >> >> >> >> This patch provides a zoom2 base target by co

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

2009-04-04 Thread Marco
Fixed a memory leak in image_verify_header function. Used the functions image_get_() from image.h. Fixed two sector boundary misalignment while reading. Signed-off-by: Marco Stornelli --- diff -uprN u-boot-2009.03-orig/tools/imls.c u-boot-2009.03/tools/imls.c --- u-boot-2009.03-orig/tools/im

Re: [U-Boot] [PATCH 3/8] ZOOM2 Add support for debug board detection.

2009-04-04 Thread Tom
Dirk Behme wrote: > Hi Tom, > > Tom Rix wrote: >> https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP >> >> >> >> The zoom2 has an auxillary board that contains the serial, net, jtag and >> battery simulator. This change supports a runtime check if t

Re: [U-Boot] [PATCH] tools: add ncb to gitignore

2009-04-04 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1238845345-17104-1-git-send-email-vap...@gentoo.org> you wrote: > Signed-off-by: Mike Frysinger > --- > tools/.gitignore |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering Gm

Re: [U-Boot] [PATCH 2/2 V2] rename include/zlib.h to include/u-boot/zlib.h

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1238842151-24471-1-git-send-email-plagn...@jcrosoft.com> you wrote: > Some systems have zlib.h installed in /usr/include/. This isn't the > desired file (we want the one in include/zlib.h). This will avoid the > conflict. > > Signed-off-by: Jean-

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

2009-04-04 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1238844453-16788-1-git-send-email-vap...@gentoo.org> you wrote: > From: Todor I Mollov > > Signed-off-by: Todor I Mollov > Signed-off-by: Mike Frysinger > CC: Haavard Skinnemoen > --- > drivers/mtd/spi/atmel.c | 139 > +++

[U-Boot] [PATCH] Fix building of env_embedded.o

2009-04-04 Thread Wolfgang Denk
Since commit a706bfc7 common/env_embedded.o and tools/envcrc were only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks building for many boards. We always have to build these files when CONFIG_ENV_IS_IN_FLASH is set. Signed-off-by: Wolfgang Denk --- common/Makefile |1 + tools/Ma

[U-Boot] [PATCH] Fix implicit declaration of function 'htons'

2009-04-04 Thread Wolfgang Denk
Include instead of to get htons() prototpye. Signed-off-by: Wolfgang Denk --- tools/ncb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/ncb.c b/tools/ncb.c index 7e123f1..c240d83 100644 --- a/tools/ncb.c +++ b/tools/ncb.c @@ -1,7 +1,7 @@ #include #include

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

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
The timer has been rewrote with a precision at ~0,18% Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm926ejs/at91/timer.c | 82 +-- include/configs/afeb9260.h |2 +- include/configs/at91cap9adk.h |2 +- include/configs/at91sam9

[U-Boot] [PATCH] fsl_law: Fix bug in calculation of LAW sizing

2009-04-04 Thread Kumar Gala
In set_ddr_laws() when we determined how much of the size requested to be mapped was covered by the the first LAW we needed to recalculate the size based on what was actually mapped. Signed-off-by: Kumar Gala --- drivers/misc/fsl_law.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)

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

2009-04-04 Thread Kumar Gala
There are some other outstanding 85xx patches but I figured I'd let Andy cover those and let them sit on the list a big longer for any comments people might have. - k The following changes since commit 453c0d7558215cbc8636d94af172886d84e0dbba: Detlev Zundel (1): include/ns16550.h: Unify

[U-Boot] [PATCH V2] Fix implicit declaration of function 'htons'

2009-04-04 Thread Wolfgang Denk
Include instead of to get htons() prototpye. Signed-off-by: Wolfgang Denk --- V2: Make commit message and code agree: use netinet/in.h instead of arpa/inet.h as this seems to be more common. tools/ncb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/ncb.c b/to

[U-Boot] [PATCH] Fix quoting bug introduced by commit 74de7aef

2009-04-04 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk --- board/pn62/cmd_pn62.c |2 +- common/cmd_load.c |2 +- common/cmd_net.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/pn62/cmd_pn62.c b/board/pn62/cmd_pn62.c index b9f3bdb..ff5d63e 100644 --- a/board/pn62/cmd_pn62.

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

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:28 Fri 03 Apr , Wolfgang Denk wrote: > Dear Jean-Christophe & Remy, > > In message <1236684053-21368-1-git-send-email-vivek.ku...@azingo.com> Vivek > Kutal wrote: > > This Patch adds Support for PXA27X UDC. > > > > Signed-off-by: Vivek Kutal > > --- > > Resinding after doing the

Re: [U-Boot] Compiling for ARMv7-a

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:27 Thu 02 Apr , Premi, Sanjeev wrote: > Hi, > > I am trying to build the u-boot for ARM Cortex-A8 (OMAP3). > > By default the code is built for ARMv5. So, I made this > change in cpu/arm_cortexa8/config.mk: > > # Make ARMv5 to allow more compilers to work, even though its v7a. > -PLAT

Re: [U-Boot] [PATCH] Marvell Feroceon-FR131/Sheeva-88SV131 cpu core support

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 04:09 Sat 04 Apr , Prafulla Wadaskar wrote: > This is ARM v5TE-compliant processor core with > MMU and L1/L2 Cache > > Signed-off-by: prafulla_wadaskar > Reviewed by: Ronen Shitrit > --- > cpu/arm926ejs/start.S |5 + > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --

Re: [U-Boot] [PATCH] Marvell Kirkwood family SOC support

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, I'll provide you two seperate comment one for the file location and global comment and an other for code review On 04:09 Sat 04 Apr , Prafulla Wadaskar wrote: > From: prafulla_wadaskar > > Kirkwood family controllers are highly integrated SOCs > based on Feroceon-88FR131/Sheeva-88SV131

Re: [U-Boot] [PATCH v2] Noisily disable the legacy NAND subsystem.

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:41 Wed 01 Apr , Scott Wood wrote: > Legacy NAND is marked for feature removal after April 2009 (i.e. this > upcoming release). There are still several boards that reference it > (though many do so only for disk-on-chip support which has been silently > disabled for a while now). These b

[U-Boot] OneNand support broken for apollon

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, Your patch Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN brake the appolon Could you take a look? Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] netstar: fix crc32.c dependancy location

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/netstar/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/netstar/Makefile b/board/netstar/Makefile index 11a952b..91bac38 100644 --- a/board/netstar/Makefile +++ b/board/netstar/Makefile @@ -75,7 +75

Re: [U-Boot] [PATCH v2] Noisily disable the legacy NAND subsystem.

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090404163654.ge32...@game.jcrosoft.org> you wrote: > > Scoot you brake the rm9200dk No, he did not. He just made the problem clearly visible - the code was has been broken before (just silently), if I understand correctly. > could

Re: [U-Boot] OneNand support broken for apollon

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090404164027.gf32...@game.jcrosoft.org> you wrote: > > Your patch Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN > brake the appolon > Could you take a look? Could you *PLEASE* send such messages (1) with the original Subjec

Re: [U-Boot] [PATCH v2] PQ2FADS: Enable PCI.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090403202645.ga7...@ld0162-tx32.am.freescale.net> you wrote: > PCI on PQ2FADS is very similar to PCI on MPC8272ADS. > > Signed-off-by: Scott Wood > --- > Removed an inadvertent change to an 8272ads ifdef. > > cpu/mpc8260/pci.c|2 ++ > include/con

Re: [U-Boot] [PATCH 2/2] MPC8260ADS: Define CONFIG_HAS_ETH0.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090403202440.gd6...@ld0162-tx32.am.freescale.net> you wrote: > This is required so that the MAC address will be updated in the device tree. > > Signed-off-by: Scott Wood > --- > include/configs/MPC8260ADS.h |2 ++ > 1 files changed, 2 insertions(+), 0 deletion

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

2009-04-04 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > There are some other outstanding 85xx patches but I figured I'd let Andy > cover those and let them sit on the list a big longer for any comments > people might have. > > - k > > The following changes since commit 453c0d7558215cbc8636d94af172886d84e0dbba

Re: [U-Boot] [PATCH] netstar: fix crc32.c dependancy location

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1238865340-18710-1-git-send-email-plagn...@jcrosoft.com> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > board/netstar/Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied directly, thanks. Best r

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

2009-04-04 Thread Mike Frysinger
On Saturday 04 April 2009 09:39:14 Wolfgang Denk wrote: > In message Mike Frysinger wrote: > > From: Todor I Mollov > > > > Signed-off-by: Todor I Mollov > > Signed-off-by: Mike Frysinger > > CC: Haavard Skinnemoen > > --- > > drivers/mtd/spi/atmel.c | 139 > >

[U-Boot] AT91 Pull Request

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, Please pull the following changes since commit 42f9ebff2f758bef524780a00c712eb63a72d99b: Scott Wood (1): MPC8260ADS: Define CONFIG_HAS_ETH0. are available in the git repository at: git://git.denx.de/u-boot-at91.git master Jean-Christophe PLAGNIOL-VILLARD (11): at

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

2009-04-04 Thread Wolfgang Denk
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 reading. ... > + err = ioctl(fd, MEMGETINFO, &mtdinfo); > + if (err < 0) { >

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

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090402105317.ge...@game.jcrosoft.org> you wrote: > > > "cahed"? Typo for "cached"? > yes Please fix. > > What is a "cached processor" ? > some arm processor or prototype does not have cache support That's something different. You can cache da

[U-Boot] [PATCH] ARM: fix out-of-tree build of imx31_phycore_eet, add to MAINTAINERS

2009-04-04 Thread Guennadi Liakhovetski
Fix out-of-tree build of the imx31_phycore_eet target, add it to the list of boards, maintained by me, in MAINTAINERS. Reported-by: Wolfgang Denk Signed-off-by: Guennadi Liakhovetski --- diff --git a/MAINTAINERS b/MAINTAINERS index 284f5c6..4b1b187 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@

Re: [U-Boot] [PATCH] at91sam9/at91cap: add new spi framework and spi flash support

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1238840105-19029-1-git-send-email-plagn...@jcrosoft.com> you wrote: > The new Framework is not yet activated by default, it will be next release > at the same time of the removal of the DATAFLASH support > > Signed-off-by: Jean-Christophe PLAGNIO

Re: [U-Boot] [PATCH] at91sam9/at91cap: add new spi framework and spi flash support

2009-04-04 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:52 Sat 04 Apr , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <1238840105-19029-1-git-send-email-plagn...@jcrosoft.com> you > wrote: > > The new Framework is not yet activated by default, it will be next release > > at the same time of the removal of the D

Re: [U-Boot] AT91 Pull Request

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090404185017.gg32...@game.jcrosoft.org> you wrote: > > Please pull the following changes since commit > 42f9ebff2f758bef524780a00c712eb63a72d99b: > Scott Wood (1): > MPC8260ADS: Define CONFIG_HAS_ETH0. > > are available in the git r

Re: [U-Boot] [PATCH] ARM: fix out-of-tree build of imx31_phycore_eet, add to MAINTAINERS

2009-04-04 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message you wrote: > Fix out-of-tree build of the imx31_phycore_eet target, add it to the list > of boards, maintained by me, in MAINTAINERS. > > Reported-by: Wolfgang Denk > Signed-off-by: Guennadi Liakhovetski > --- > diff --git a/MAINTAINERS b/MAINTAINERS > i

Re: [U-Boot] [PATCH 2/3] mpc52xx phy: initialize only when needed

2009-04-04 Thread Wolfgang Denk
Dear Jon, In message <20090321133846.11905.81764.st...@localhost> you wrote: > From: Sascha Hauer > > Do not initialize phy on startup, instead initialize it > when we actually need it. > > Signed-off-by: Sascha Hauer > --- > drivers/net/mpc5xxx_fec.c | 11 +-- > 1 files changed, 9

Re: [U-Boot] [PATCH] smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()

2009-04-04 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1237774681-13327-1-git-send-email-vap...@gentoo.org> you wrote: > Rather than sticking Blackfin-specific stuff into the eeprom example, use > an indirect macro so that any board can override it with their own magic > sauce in their board config file. > > Also fix

Re: [U-Boot] [PATCH v4] Separate mtdparts command from jffs2

2009-04-04 Thread Wolfgang Denk
Dear Ladislav Michl, In message <20090323110607.gb6...@localhost.localdomain> you wrote: > On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote: > > Currently the mtdparts commands are included in the jffs2 command support. > > This doesn't make sense anymore since other commands (e.g. UBI

Re: [U-Boot] [PATCH] more command usage cleanup

2009-04-04 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1237861654-28540-1-git-send-email-vap...@gentoo.org> you wrote: > Fix up a few dangling commands like in "Command usage cleanup" commit. > > Signed-off-by: Mike Frysinger > --- > common/cmd_mmc.c |2 +- > common/cmd_ubifs.c |6 +++--- > 2 files changed

Re: [U-Boot] [PATCH] UBIFS: add R/O compatibility

2009-04-04 Thread Wolfgang Denk
Dear Stefan Roese, In message <1238145674-12595-1-git-send-email...@denx.de> you wrote: > From: Artem Bityutskiy > > From: Artem Bityutskiy > > Now UBIFS is supported by u-boot. If we ever decide to change the > media format, then people will have to upgrade their u-boots to > mount new format

Re: [U-Boot] [PATCH] Small fix to m5282evb

2009-04-04 Thread Wolfgang Denk
Dear Alan Carvalho de Assis, In message <37367b3a0903281550y29d65c0p87ceca91c9c4...@mail.gmail.com> you wrote: > This is just a small fix to get u-boot on m5282evb. > > Signed-off-by: Alan Carvalho de Assis > --- > board/freescale/m5282evb/u-boot.lds |2 +- > 1 files changed, 1 insertions(

Re: [U-Boot] [PATCH] at91sam9/at91cap: add new spi framework and spi flash support

2009-04-04 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090404194842.gh32...@game.jcrosoft.org> you wrote: > > > Are these really board specific, or is it likely that we will see the > > same code for other boards as well? > yes these code are board specific because you can use the cs you want No, i

Re: [U-Boot] [PATCH] cmd_mmc: add support device command for selecting mmc device (resend)

2009-04-04 Thread Wolfgang Denk
Dear Minkyu Kang, In message <49d05ee7.9010...@samsung.com> you wrote: > This patch improves device command for selecting mmc device > > Signed-off-by: Minkyu Kang > --- > common/cmd_mmc.c | 61 + > 1 files changed, 56 insertions(+), 5 delet

Re: [U-Boot] [PATCH] eSPI: add the eSPI register support

2009-04-04 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1238479781-16936-1-git-send-email-mingkai...@freescale.com> you wrote: > Signed-off-by: Mingkai Hu > --- > include/asm-ppc/immap_85xx.h | 17 + > 1 files changed, 17 insertions(+), 0 deletions(-) Applied, thank. Andy, hope this is OK with you. B

Re: [U-Boot] [PATCH] tools/setlocalversion: use git svn instead of git-svn

2009-04-04 Thread Wolfgang Denk
Dear Peter Korsgaard, In message <1238514736-22505-1-git-send-email-jac...@sunsite.dk> you wrote: > Use the correct git syntax instead of the deprecated git-. > > Signed-off-by: Peter Korsgaard > --- > tools/setlocalversion |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied

Re: [U-Boot] core ticks/timer code

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090331213202.gb19...@ld0162-tx32.am.freescale.net> you wrote: > > Is there any particular reason not to change the powerpc get_timer > implementation to use the timebase (scaled down to ms)? I think so. There are some boards where we actually measure the system cloc

Re: [U-Boot] [PATCH V3] mpc5200: reduce delays in i2c

2009-04-04 Thread Wolfgang Denk
Dear Jon Smirl, In message <20090331213728.17969.91950.st...@localhost> you wrote: > Make the i2c delays smaller. The measured delay is 55us at > 100Khz. Set the delay to 15us which should work for 400Khz. > 100Khz will loop four times and get a 60us delay. Try four > times at a 15us delay and the

Re: [U-Boot] bss section initialization on s3c44b0

2009-04-04 Thread Wolfgang Denk
Dear Ming-Dien Chang, In message <714db0904012028l19743377tec224a9954017...@mail.gmail.com> you wrote: > > Sorry for unfamiliar with git diff. > The following snippet is the diff of u-boot 1.3.1 and my working. > > > Index: Z:/u-boot/u-boot/cpu/s3c44b0/start.S > =

Re: [U-Boot] [PATCH v2] Noisily disable the legacy NAND subsystem.

2009-04-04 Thread ksi
On Sat, 4 Apr 2009, Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090404163654.ge32...@game.jcrosoft.org> you wrote: > > > > Scoot you brake the rm9200dk > > No, he did not. He just made the problem clearly visible - the code > was has been broken before

Re: [U-Boot] [PATCH] UBI/cfi-mtd: Fix mtd name for multiple chips

2009-04-04 Thread Wolfgang Denk
Dear Stefan Roese, In message <1238685334-29099-1-git-send-email...@denx.de> you wrote: > From: Andreas Huber > > On platforms with multiple NOR chips, currently only the first one > can be selected using the "ubi part" command. This patch fixes this > problem by using different names for the NO

Re: [U-Boot] [PATCH 1/2] MPC8260ADS: Add nfsboot/ramboot to default environment.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090402210906.ga27...@ld0162-tx32.am.freescale.net> you wrote: > This brings it in line with other Freescale boards. > > Signed-off-by: Scott Wood > --- > include/configs/MPC8260ADS.h | 42 > ++ > 1 files changed, 42 inser

Re: [U-Boot] [PATCH 2/2] mpc8260: Fill in brg's clock-frequency in device tree.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090402211036.gb27...@ld0162-tx32.am.freescale.net> you wrote: > Signed-off-by: Scott Wood > --- > cpu/mpc8260/cpu.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH v2] MPC8260ADS: Add nfsboot/ramboot to default environment.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090402232043.ga1...@ld0162-tx32.am.freescale.net> you wrote: > This brings it in line with other Freescale boards. > > Signed-off-by: Scott Wood > --- > This time with ttyCPM0, not ttyS0. > > include/configs/MPC8260ADS.h | 42 >

Re: [U-Boot] [PATCH RESEND] common/image.c: Relocate strings in tables.

2009-04-04 Thread Wolfgang Denk
Dear Scott Wood, In message <20090402211510.ga27...@ld0162-tx32.am.freescale.net> you wrote: > Without this, u-boot can crash or print garbage if the original link > address no longer points to a valid string. > > Signed-off-by: Scott Wood > --- > I sent this a couple weeks ago hoping to make it

Re: [U-Boot] core ticks/timer code

2009-04-04 Thread Wolfgang Denk
Dear Graeme Russ, In message you wrote: > > Can this be put in the ToDo list so anyone who looks to clean up their > CPU and/or architecture knows what it is exactly that we are trying to > achieve Maybe you can summarize and submit a patch, please? Best regards, Wolfgang Denk -- DENX Soft

[U-Boot] [PATCH] mpc5200: reduce delays in i2c

2009-04-04 Thread Jon Smirl
The previous code waited 1000us before checking i2c status. Measurement shows i2c is usually ready in under 50us. Change the polling interval to 15us, loop 6,667 times to keep the polling timeout constant at 100ms. --- cpu/mpc5xxx/i2c.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(

[U-Boot] [PATCH] One more fix for building env_embedded.o

2009-04-04 Thread Wolfgang Denk
In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in commit afcbce07, we also need to do the same for CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM. Signed-off-by: Wolfgang Denk --- common/Makefile |2 ++ tools/Makefile |2 ++ 2 files changed, 4 insertions(+), 0 deletio

[U-Boot] [PATCH] ARM: fix out-of-tree build of imx31_phycore_eet

2009-04-04 Thread Guennadi Liakhovetski
Fix out-of-tree build of the imx31_phycore_eet target. Reported-by: Wolfgang Denk Signed-off-by: Guennadi Liakhovetski --- diff --git a/Makefile b/Makefile index f9edd9d..86e6d62 100644 --- a/Makefile +++ b/Makefile @@ -3066,6 +3066,7 @@ imx31_litekit_config : unconfig imx31_phycore_eet_

[U-Boot] [PATCH] ARM: add the imx31_phycore_eet target to MAINTAINERS

2009-04-04 Thread Guennadi Liakhovetski
imx31_phycore_eet is a variant of the imx31_phycore board with a few extensions, which justifies a separate entry in the MAINTAINERS list, whereas normally all entries sharing a single configuration file and a board/ directory have only one entry in MAINTAINERS. Reported-by: Wolfgang Denk Sign

[U-Boot] Cleanup of legacy NAND / DiskOnChip code needed

2009-04-04 Thread Wolfgang Denk
Hello, please note that starting with commit 99067b08f4 the legacy NAND subsystem has been disabeled, because it has been marked (for a long time!) for feature removal after April 2009 (i.e. with this upcoming release). This also affects DiskOnChip support on some boards. In the result, s

Re: [U-Boot] [PATCH] mpc5200: reduce delays in i2c

2009-04-04 Thread Wolfgang Denk
Dear Jon Smirl, In message <20090404214451.3615.21311.st...@terra> you wrote: > The previous code waited 1000us before checking i2c > status. Measurement shows i2c is usually ready in > under 50us. Change the polling interval to 15us, > loop 6,667 times to keep the polling timeout constant > at 10

Re: [U-Boot] [PATCH] ARM: fix out-of-tree build of imx31_phycore_eet

2009-04-04 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message you wrote: > Fix out-of-tree build of the imx31_phycore_eet target. > > Reported-by: Wolfgang Denk > Signed-off-by: Guennadi Liakhovetski > --- > diff --git a/Makefile b/Makefile > index f9edd9d..86e6d62 100644 Applied, thanks. Best regards, Wolfgang D

Re: [U-Boot] [PATCH] ARM: add the imx31_phycore_eet target to MAINTAINERS

2009-04-04 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message you wrote: > imx31_phycore_eet is a variant of the imx31_phycore board with a few > extensions, which justifies a separate entry in the MAINTAINERS list, > whereas normally all entries sharing a single configuration file and a > board/ directory have only

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

2009-04-04 Thread Dirk Behme
Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora. Signed-off-by: Dirk Behme --- For Zoom1 it was already removed by http://lists.denx.de/pipermail/u-boot/2009-April/050150.html include/configs/omap3_beagle.h | 17 - include/configs/omap3_evm.h |

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

2009-04-04 Thread Dirk Behme
The Beagle Rev C boards pull UART2 from an alternate set of balls. Signed-off-by: Steve Sakoman Signed-off-by: Dirk Behme --- board/omap3/beagle/beagle.c |4 board/omap3/beagle/beagle.h | 25 + 2 files changed, 21 insertions(+), 8 deletions(-) Index: u-boot-