Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread Reinhard Meyer
Dear Asen Dimov, > Signed-off-by: Asen Dimov > --- > Note: > This patch was a part of patches, but it is better to be done step by step and > so this patch is a split from the patch series with message id: > <1307606409-29818-2-git-send-email-di...@ronetix.at> > and Patchwork: > http://patchwork.o

Re: [U-Boot] [PATCH] ppc460: read get_sys_info from CPR registers instead of STRP registers

2011-07-26 Thread Stefan Roese
Hi Wolfgang, [Added Dave and Marri from APM to CC] On Monday 25 July 2011 20:39:14 Wolfgang Denk wrote: > > > It appears the Redwood board is unmaintained. =A0No updates for this > > > board have ever been posted since the initial addition more than 3 > > > years ago, nor is there any board maint

[U-Boot] [PATCH] AT91: fix mistake in at91sam9260_devices.c(spi1_hw_init)

2011-07-26 Thread Reinhard Meyer
Bits 0..3 in cs_mask = CS0..CS3 in SPI mode require it to be peripheral Bits 4..7 in cs_mask = CS0..CS3 in GPIO mode require it to be output Signed-off-by: Reinhard Meyer --- arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file

2011-07-26 Thread Jason Liu
CONFIG_L2_OFF is obsolete after the following commit: e47f2db5371047eb9bcd115fee084e6a8a92a239 armv7: rename cache related CONFIG flags Replace the cache related CONFIG flags with more meaningful names. Following are the changes: CONFIG_L2_OFF-> CONFIG_SYS_L2CACHE_OFF But the above commit

[U-Boot] [PATCH V2] AT91: EMK/TOP9000 board actualization

2011-07-26 Thread Reinhard Meyer
This is a general update of all projects involving the TOP9000 CPU module. Changes: Enable the /RESET input Add more ARCH numbers Add EAN13 checksum routine Add reading of VPD EEPROM Remove obsolete reset_phy() Add boot progress LEDs Signed-off-by: Reinhard Meyer --- board/emk/top9000/top9

Re: [U-Boot] [PATCH] post, memory test: add memory_post_test() to include file

2011-07-26 Thread Wolfgang Denk
Dear Heiko, In message <1306909447-19603-3-git-send-email...@denx.de> you wrote: > This include is needed, if this memory test is used "outside" > from post code, for example booting with nand_spl, and using > this memory test before copying u-boot code to RAM and jumping > to it. > > Signed-off-

Re: [U-Boot] [PATCH V2 2/5] omap-common: add nand spl support

2011-07-26 Thread Simon Schwarz
Dear Andreas, On 07/26/2011 08:07 AM, Andreas Bießmann wrote: > Dear Simon, > > Am 25.07.2011 um 20:05 schrieb Simon Schwarz: > >> Add NAND support for the new SPL structure. >> >> --- >> This patch didn't exist before V2! >> >> V2 changes: >> ADD Some define-barriers for OMAP3 to only use NAND >>

Re: [U-Boot] [PATCH V2 3/5] nand spl: add NAND Library to new SPL

2011-07-26 Thread Simon Schwarz
Dear Andreas, On 07/26/2011 07:59 AM, Andreas Bießmann wrote: > Dear Simon, > > Am 25.07.2011 um 20:05 schrieb Simon Schwarz: > >> Insert some NAND driver sources into NAND SPL library. >> >> --- >> V1 changes: >> CHG Default to HW ecc in SPL build >> ADD nand_read_buf16 function, read buffer >> A

[U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file

2011-07-26 Thread Jason Liu
CONFIG_L2_OFF is obsolete after the following commit: e47f2db5371047eb9bcd115fee084e6a8a92a239 armv7: rename cache related CONFIG flags Replace the cache related CONFIG flags with more meaningful names. Following are the changes: CONFIG_L2_OFF-> CONFIG_SYS_L2CACHE_OFF But the above commit

[U-Boot] [PATCH] SMDKV310: Fix build error for smdkv310 board

2011-07-26 Thread Chander Kashyap
Fix build error for smdkv310 board: board/samsung/smdkv310/smdkv310.c:126: undefined reference to `gpio_set_pull' Signed-off-by: Chander Kashyap --- board/samsung/smdkv310/smdkv310.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/samsung/smdkv310/smdkv310.c b/b

Re: [U-Boot] [PATCH V2 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Simon Schwarz
Dear Andreas, On 07/26/2011 08:17 AM, Andreas Bießmann wrote: > Dear Simon, > > Am 25.07.2011 um 20:05 schrieb Simon Schwarz: > >> Add NAND SPL support to the devkit8000 config >> >> --- >> V1 changes: >> ADD devkit8000_nand to board.cfg >> ADD nand_spl Makefile, llinker script, spl-devkit8000.c >

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread RONETIX - Asen Dimov
Hello Reinhard, On 07/26/2011 10:14 AM, Reinhard Meyer wrote: > Dear Asen Dimov, >> Signed-off-by: Asen Dimov >> --- >> Note: >> This patch was a part of patches, but it is better to be done step by step >> and >> so this patch is a split from the patch series with message id: >> <1307606409-2981

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread RONETIX - Asen Dimov
and one forgotten answer ... On 07/26/2011 12:11 PM, RONETIX - Asen Dimov wrote: > Hello Reinhard, > > On 07/26/2011 10:14 AM, Reinhard Meyer wrote: >> Dear Asen Dimov, >>> Signed-off-by: Asen Dimov >>> --- >>> Note: >>> This patch was a part of patches, but it is better to be done step >>> by st

Re: [U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file

2011-07-26 Thread Stefano Babic
On 07/26/2011 10:25 AM, Jason Liu wrote: > CONFIG_L2_OFF is obsolete after the following commit: > > e47f2db5371047eb9bcd115fee084e6a8a92a239 > armv7: rename cache related CONFIG flags > Replace the cache related CONFIG flags with more meaningful > names. Following are the changes: > CONFIG_L2_OFF

Re: [U-Boot] __fsl_ddr_set_lawbar: ERROR (ctrl #0, intrlv=0)

2011-07-26 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > > Do you know if this board has any real reset on a FPGA or CPLD or > something like that. There is no such faeature on that board, nor on any of a number of other 85xx boards I have access to. > The problem on the 8555/8541 is the reset you are trigger

[U-Boot] [PATCH] SMDKV310: Fix undefined reference error

2011-07-26 Thread Chander Kashyap
Fix buld error: undefined reference to '__image_copy_end' and `save_boot_params'. start.o: In function `_image_copy_end_ofs': mmc_spl/board/samsung/smdkv310/start.S:44: undefined reference to `__image_copy_end' start.o: In function `reset': mmc_spl/board/samsung/smdkv310/start.S:137: undefined re

Re: [U-Boot] [PATCH] ppc460: read get_sys_info from CPR registers instead of STRP registers

2011-07-26 Thread Wolfgang Denk
Dear Stefan, In message <201107261000.04609...@denx.de> you wrote: > > On Monday 25 July 2011 20:39:14 Wolfgang Denk wrote: > > > > It appears the Redwood board is unmaintained. No updates for this > > > > board have ever been posted since the initial addition more than 3 > > > > years ago, nor

Re: [U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file

2011-07-26 Thread Wolfgang Denk
Dear Jason Liu, In message <1311668750-5471-1-git-send-email-jason@linaro.org> you wrote: > CONFIG_L2_OFF is obsolete after the following commit: > > e47f2db5371047eb9bcd115fee084e6a8a92a239 > armv7: rename cache related CONFIG flags > Replace the cache related CONFIG flags with more meaningf

Re: [U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file

2011-07-26 Thread Jason Hui
Hi, Stefano, On Tue, Jul 26, 2011 at 5:21 PM, Stefano Babic wrote: > On 07/26/2011 10:25 AM, Jason Liu wrote: >> CONFIG_L2_OFF is obsolete after the following commit: >> >> e47f2db5371047eb9bcd115fee084e6a8a92a239 >> armv7: rename cache related CONFIG flags >> Replace the cache related CONFIG fla

Re: [U-Boot] Problem with PCI Express connecting 2 MPC8544

2011-07-26 Thread HUGO MARTINS
> From: swart...@freescale.com > To: fhpwo...@hotmail.com > CC: u-boot@lists.denx.de > Subject: RE: [U-Boot] Problem with PCI Express connecting 2 MPC8544 > Date: Mon, 25 Jul 2011 22:49:18 + > > From: sardamaxima > > > > In the first processor (configured as RC) I get the following > ...

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread Reinhard Meyer
Dear Asen Dimov, > and one forgotten answer ... > >> What I miss in at91sam9261_devices.c (as compared to the 9260) > >> is support for MACB and MCI. Don't 9261 systems use Ethernet? > >> Or is that part still in the board specific files? > >> > that part is in the board file. Sorry for that confu

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread Reinhard Meyer
Dear Asen Dimov, > and one forgotten answer ... > >> What I miss in at91sam9261_devices.c (as compared to the 9260) > >> is support for MACB and MCI. Don't 9261 systems use Ethernet? > >> Or is that part still in the board specific files? > >> > that part is in the board file. That is unfortunate.

Re: [U-Boot] [PATCH] AT91: fix mistake in at91sam9260_devices.c(spi1_hw_init)

2011-07-26 Thread Reinhard Meyer
Dear Reinhard Meyer, > Bits 0..3 in cs_mask = CS0..CS3 in SPI mode require it to be peripheral > Bits 4..7 in cs_mask = CS0..CS3 in GPIO mode require it to be output > > Signed-off-by: Reinhard Meyer > --- > arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c |2 +- > 1 files changed, 1 insert

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread Reinhard Meyer
Dear Asen Dimov, > > I have this as a local patch and could squash this onto yours, or > > you may provide an updated patch. > I will try once more to make it as it should be. The squashed version is at top of u-boot-atmel/rework-at91sam9261. If you are OK with that, I'll post the patch and apply

[U-Boot] [PATCH V3 0/5] OMAP3 and devkit8000 SPL support

2011-07-26 Thread Simon Schwarz
V1 Initial SPL support for OMAP3 was based on the old SPL V2 Introduced major changes. It is based on the OMAP4-SPL patch by Aneesh V and the new SPL Framework by Daniel Schwierzeck and Aneesh V V3 Some small bug fixes and correct placed SOB. This is based on the following patches: - New SP

[U-Boot] [PATCH V3 2/5] omap-common: add nand spl support

2011-07-26 Thread Simon Schwarz
Add NAND support for the new SPL structure. Signed-off-by: Simon Schwarz --- This patch didn't exist before V2! V2 changes: ADD Some define-barriers for OMAP3 to only use NAND ADD nand_load_image() - inits the OMAP gpmc, loads the images - parses the header CHG cosmetic ADD do_reset() im

[U-Boot] [PATCH V3 1/5] omap3: Configure RAM bank 0 if in SPL

2011-07-26 Thread Simon Schwarz
OMAP3 relied on the memory config done by X-loader or Configuration Header. This has to be reworked for the implementation of a SPL. This patch configures RAM bank 0 if CONFIG_SPL_BUILD is set. Settings for Micron-RAM used by devkit8000 are added to mem.h Signed-off-by: Simon Schwarz --- V1 chang

[U-Boot] [PATCH V3 3/5] nand spl: add NAND Library to new SPL

2011-07-26 Thread Simon Schwarz
Insert some NAND driver sources into NAND SPL library. Signed-off-by: Simon Schwarz --- V1 changes: CHG Default to HW ecc in SPL build ADD nand_read_buf16 function, read buffer ADD omap_dev_ready function, indicte if chip is ready V2 changes: DEL GPMC_WAIT0_PIN_ACTIVE define CHG omap_dev_ready()

[U-Boot] [PATCH V3 4/5] omap3: new SPL structure support

2011-07-26 Thread Simon Schwarz
Support for the new spl structure. Using the interface defined by Aneesh V for OMAP4 Signed-off-by: Simon Schwarz --- V1 changes: ADD support for early console output in SPL V2 changes: ADD include omap_common.h in board.c ADD implement new omap common interface omap_boot_device, omap_boot_mode

[U-Boot] [PATCH V3 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Simon Schwarz
Add NAND SPL support to the devkit8000 config Signed-off-by: Simon Schwarz --- V1 changes: ADD devkit8000_nand to board.cfg ADD nand_spl Makefile, llinker script, spl-devkit8000.c ADD config ecc, SRAM, SPL to board config ADD CONFIG_SYS_SRAM_START and _SIZE to board config ADD CONFIG_SYS_SPL_TEXT

Re: [U-Boot] [PATCH V3 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Andreas Bießmann
Dear Simon, Am 26.07.2011 12:22, schrieb Simon Schwarz: > Add NAND SPL support to the devkit8000 config > > Signed-off-by: Simon Schwarz > --- > V1 changes: > ADD devkit8000_nand to board.cfg > ADD nand_spl Makefile, llinker script, spl-devkit8000.c > ADD config ecc, SRAM, SPL to board config >

Re: [U-Boot] openrd_ultimate GigEth ports not working

2011-07-26 Thread Alex Zeffertt
On 25 July 2011 18:14, Ralph Metzler wrote: > Alex Zeffertt writes: > > and then I burn the .kwb file into the flash using openocd. > > > > Unfortunately I cannot get the Gig Eth ports to work in u-boot at the > > moment. When I run the following at the command prompt the console just > > h

Re: [U-Boot] [PATCH V3 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Wolfgang Denk
Dear Simon Schwarz, In message <1311675739-10966-6-git-send-email-simonschwarz...@gmail.com> you wrote: > Add NAND SPL support to the devkit8000 config ... > +#define CONFIG_SYS_SRAM_START 0x4020 > +#define CONFIG_SYS_SRAM_SIZE 0x As Andreas pointed out before

Re: [U-Boot] [PATCH V3 0/5] OMAP3 and devkit8000 SPL support

2011-07-26 Thread Wolfgang Denk
Dear Simon Schwarz, In message <1311675739-10966-1-git-send-email-simonschwarz...@gmail.com> you wrote: > V1 Initial SPL support for OMAP3 was based on the old SPL > V2 Introduced major changes. It is based on the OMAP4-SPL patch by Aneesh V > and the new SPL Framework by Daniel Schwierzeck

Re: [U-Boot] openrd_ultimate GigEth ports not working

2011-07-26 Thread Wolfgang Denk
Dear Alex Zeffertt, In message you wrote: > > I can confirm that the issue is the same with OpenRD Ultimate. I.e. > ethernet is not working in HEAD but it is fine on tag v2011.06. And what says "git bisect" ? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang D

Re: [U-Boot] [PATCH, AT91, rework v2] change common at91sam9261 files after AT91 rework

2011-07-26 Thread RONETIX - Asen Dimov
Hello Reinhard, On 07/26/2011 12:58 PM, Reinhard Meyer wrote: > Dear Asen Dimov, >>> I have this as a local patch and could squash this onto yours, or >>> you may provide an updated patch. >> I will try once more to make it as it should be. > The squashed version is at top of u-boot-atmel/rework-a

[U-Boot] [PATCH] AT91: change common at91sam9261 files to compile with new scheme

2011-07-26 Thread Reinhard Meyer
From: Asen Dimov Signed-off-by: Asen Dimov Signed-off-by: Reinhard Meyer --- arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c | 76 ++--- arch/arm/include/asm/arch-at91/at91sam9261.h |3 +- 2 files changed, 38 insertions(+), 41 deletions(-) diff --git a/arch/arm/cp

Re: [U-Boot] [PATCH] 85xx: enable FDT support for STX SSA board

2011-07-26 Thread Sergei Shtylyov
Hello. On 25-07-2011 17:15, Wolfgang Denk wrote: > We also have to shift TEXT_BASE to accomodate for the additional > code size. > Signed-off-by: Wolfgang Denk > Cc: Kumar Gala > --- > board/stx/stxssa/stxssa.c |8 > include/configs/stxssa.h |7 ++- > 2 files changed,

Re: [U-Boot] [PATCH] powerpc: Fix device tree padding associated with ramdisk

2011-07-26 Thread Wolfgang Denk
Dear Kumar Gala, In message <1310001388-4084-1-git-send-email-ga...@kernel.crashing.org> you wrote: > When booting with a ramdisk we bump the amount of memory reserved for > the device tree by FDT_RAMDISK_OVERHEAD. However we did not increase > the actual size in the device tree blob to match. >

Re: [U-Boot] [PATCH] AT91: change common at91sam9261 files to compile with new scheme

2011-07-26 Thread Reinhard Meyer
Dear Asen Dimov, Reinhard Meyer: > From: Asen Dimov > > Signed-off-by: Asen Dimov > Signed-off-by: Reinhard Meyer > --- > arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c | 76 > ++--- > arch/arm/include/asm/arch-at91/at91sam9261.h |3 +- > 2 files changed, 38 inse

Re: [U-Boot] [PATCH] post, memory test: add memory_post_test() to include file

2011-07-26 Thread Wolfgang Denk
Dear Heiko, In message <20110726082651.f2ce3138e...@gemini.denx.de> I wrote: > > In message <1306909447-19603-3-git-send-email...@denx.de> you wrote: > > This include is needed, if this memory test is used "outside" > > from post code, for example booting with nand_spl, and using > > this memory

Re: [U-Boot] [PATCH V2][ARM] eb_cpux9k2: add USB host support to board

2011-07-26 Thread Reinhard Meyer
Dear Jens Scharsig, Wolfgang Denk, > Dear "u-b...@emk-elektronik.de", > > In message <1310382637.7288.7.camel@ubuntu> you wrote: > > > > The patch you sent as an attachment does indeed apply, but I remember > > its against the rules to use it; however patchworks does correctly > > Indeed patches

Re: [U-Boot] [PATCH v3] miiphy: use strncpy() not sprintf()

2011-07-26 Thread Wolfgang Denk
Dear Laurence Withers, In message <1310727678-30367-1-git-send-email-lwith...@guralp.com> you wrote: > In miiphy_register() the new device's name was initialised by passing a > string parameter as the format string to sprintf(). As this would cause > problems if it ever contained a '%' symbol, swi

Re: [U-Boot] [PATCH] Convert ISO-8859 files to UTF-8

2011-07-26 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4e252574.9030...@aribaud.net> you wrote: > > Right. Didn't run checkpatch,my bad. Will in V2. Do you have any specific plans for V2? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office

Re: [U-Boot] [PATCH V2] AT91: EMK/TOP9000 board actualization

2011-07-26 Thread Reinhard Meyer
Dear Reinhard Meyer, > This is a general update of all projects involving the TOP9000 CPU module. > Changes: > Enable the /RESET input > Add more ARCH numbers > Add EAN13 checksum routine > Add reading of VPD EEPROM > Remove obsolete reset_phy() > Add boot progress LEDs > > Signed-off-by: Re

[U-Boot] [PATCH V4 0/5] OMAP3 and devkit8000 SPL support

2011-07-26 Thread Simon Schwarz
V1 Initial SPL support for OMAP3 was based on the old SPL V2 Introduced major changes. It is based on the OMAP4-SPL patch by Aneesh V and the new SPL Framework by Daniel Schwierzeck and Aneesh V V3 Some small bug fixes and correct placed SOB. V4 Corrected one bugfix and

[U-Boot] [PATCH V4 1/5] omap3: Configure RAM bank 0 if in SPL

2011-07-26 Thread Simon Schwarz
OMAP3 relied on the memory config done by X-loader or Configuration Header. This has to be reworked for the implementation of a SPL. This patch configures RAM bank 0 if CONFIG_SPL_BUILD is set. Settings for Micron-RAM used by devkit8000 are added to mem.h Signed-off-by: Simon Schwarz --- V1 chang

[U-Boot] [PATCH V4 2/5] omap-common: add nand spl support

2011-07-26 Thread Simon Schwarz
Add NAND support for the new SPL structure. Signed-off-by: Simon Schwarz --- This patch didn't exist before V2! V2 changes: ADD Some define-barriers for OMAP3 to only use NAND ADD nand_load_image() - inits the OMAP gpmc, loads the images - parses the header CHG cosmetic ADD do_reset() im

[U-Boot] [PATCH V4 3/5] nand spl: add NAND Library to new SPL

2011-07-26 Thread Simon Schwarz
Insert some NAND driver sources into NAND SPL library. Signed-off-by: Simon Schwarz --- V1 changes: CHG Default to HW ecc in SPL build ADD nand_read_buf16 function, read buffer ADD omap_dev_ready function, indicte if chip is ready V2 changes: DEL GPMC_WAIT0_PIN_ACTIVE define CHG omap_dev_ready()

[U-Boot] [PATCH V4 4/5] omap3: new SPL structure support

2011-07-26 Thread Simon Schwarz
Support for the new spl structure. Using the interface defined by Aneesh V for OMAP4 Signed-off-by: Simon Schwarz --- V1 changes: ADD support for early console output in SPL V2 changes: ADD include omap_common.h in board.c ADD implement new omap common interface omap_boot_device, omap_boot_mode

[U-Boot] [PATCH V4 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Simon Schwarz
Add NAND SPL support to the devkit8000 config Signed-off-by: Simon Schwarz --- V1 changes: ADD devkit8000_nand to board.cfg ADD nand_spl Makefile, llinker script, spl-devkit8000.c ADD config ecc, SRAM, SPL to board config ADD CONFIG_SYS_SRAM_START and _SIZE to board config ADD CONFIG_SYS_SPL_TEXT

Re: [U-Boot] [PATCH v2 3/3] common/cmd_ximg.c: add ifdef protection for gzip uncompression

2011-07-26 Thread Wolfgang Denk
Dear Matthew McClintock, In message <1306252106-32358-1-git-send-email-...@freescale.com> you wrote: > Print a message if we do not have the ability to uncompress a gzip > image. Before, u-boot would just assume the routines were available > > Signed-off-by: Matthew McClintock > --- > v2: If gzi

Re: [U-Boot] openrd_ultimate GigEth ports not working

2011-07-26 Thread Alex Zeffertt
git bisect says: c2dd0d45540397704de9b13287417d21049d34c6 is the first bad commit commit c2dd0d45540397704de9b13287417d21049d34c6 Author: Aneesh V Date: Thu Jun 16 23:30:49 2011 + armv7: integrate cache maintenance support - Enable I-cache on bootup - Enable MMU and D-cache im

[U-Boot] AT91: rework and fixes (was:Re: [PATCH 47/52] ARM: remove broken "at91sam9261ek" /"at91sam9g10ek" boards)

2011-07-26 Thread Reinhard Meyer
Dear Hong Xu, > Hi Albert, > > On 07/18/2011 02:39 PM, Albert ARIBAUD wrote: > > Hi Eric, > > > > Le 18/07/2011 04:52, Hong Xu a écrit : > > > Hi Reinhard, > > > > > > It's a pity to see that some of the AT91 boards are planed to be removed > > > by Wolfgang. > > > > > > Several weeks ago, t

Re: [U-Boot] [PATCH v2 1/2] command/cmd_cache.c: Add optional flush arguments

2011-07-26 Thread Wolfgang Denk
Dear Matthew McClintock, In message <1306267745-14531-1-git-send-email-...@freescale.com> you wrote: > It might be desirable to have the ability to flush icache/dcache > within u-boot, this patch gives each arch the ability to provide > a flush_dcache/flush_icache function to let u-boot flush cach

Re: [U-Boot] [PATCH V3 0/5] OMAP3 and devkit8000 SPL support

2011-07-26 Thread Simon Schwarz
Dear Wolfgang Denk, On 07/26/2011 01:06 PM, Wolfgang Denk wrote: > Dear Simon Schwarz, > > In message<1311675739-10966-1-git-send-email-simonschwarz...@gmail.com> you > wrote: >> V1 Initial SPL support for OMAP3 was based on the old SPL >> V2 Introduced major changes. It is based on the OMAP4-

Re: [U-Boot] [PATCH] Fix: watchdog timed out, if using sha1 command

2011-07-26 Thread Wolfgang Denk
Dear Jens Scharsig, In message <4e24296b.9000...@bus-elektronik.de> you wrote: > * Fix: if using sha1 command watchdog timed out > * change function call sha1_csum(..) to the watchdog-safe variant > sha1_csum_wd(..) to support watchdog reset > > > Signed-off-by: Jens Scharsig > --- > common/

Re: [U-Boot] [PATCH V3 5/5] devkit8000: Add nand-spl support for new SPL

2011-07-26 Thread Simon Schwarz
Dear Andreas, On 07/26/2011 12:42 PM, Andreas Bießmann wrote: > Dear Simon, > >> diff --git a/board/timll/devkit8000/devkit8000.c >> b/board/timll/devkit8000/devkit8000.c >> index 95afaaa..9b53742 100644 >> --- a/board/timll/devkit8000/devkit8000.c >> +++ b/board/timll/devkit8000/devkit8000.c

Re: [U-Boot] [PATCH] Fix: watchdog timed out, if using md5 command

2011-07-26 Thread Wolfgang Denk
Dear Jens Scharsig, In message <4e24296f.6060...@bus-elektronik.de> you wrote: > * Fix: if using md5 command watchdog timed out > * change function call md5(..) to the watchdog-safe variant > md5_wd(..) to support watchdog reset > > > Signed-off-by: Jens Scharsig > --- > common/cmd_md5sum.c

Re: [U-Boot] [PATCH v3 1/9] Use ALL-y style instead of ifeq blocks for better readability

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-2-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Daniel Schwierzeck > Cc: Mike Frysinger > Cc: Stefan Roese > Cc: Vipin Kumar > --- > Changes since RFC v1: > - none > > Makefile | 20

Re: [U-Boot] [PATCH v4 2/9] spl: add initial support for a generic SPL framework

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311011287-28223-1-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Aneesh V > Signed-off-by: Daniel Schwierzeck > --- > Changes since RFC v1: > - added documentation for SPL > > Changes since RFC v2: > - renamed CONFIG_SYS_SPL_

Re: [U-Boot] [PATCH v3 3/9] Extend build-system for SPL framework

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-4-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Aneesh V > Signed-off-by: Daniel Schwierzeck > --- > Changes since RFC v1: > - enable garbage collect of unused sections for SPL unconditionally > > Changes sin

Re: [U-Boot] [PATCH v3 4/9] Hook SPL build-system into toplevel Makefile

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-5-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Aneesh V > Signed-off-by: Daniel Schwierzeck > --- > Changes since RFC v1: > - none > > Makefile |5 + > 1 files changed, 5 insertions(+), 0 deletions(

Re: [U-Boot] [PATCH v4 5/9] arm: adjust PLATFORM_LIBS for SPL

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311090701-11801-1-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > From: Aneesh V > > Signed-off-by: Aneesh V > Cc: Albert ARIBAUD > --- > Changes since RFC v1: > - none > > Changes since RFC v2: > - none > > Changes since v3: > - improved

Re: [U-Boot] [PATCH v3 6/9] scaled down version of generic libraries for SPL

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-7-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > From: Aneesh V > > Signed-off-by: Aneesh V > Cc: Albert ARIBAUD > --- > Changes since RFC v1: > - none > > arch/arm/lib/Makefile |2 ++ > common/Makefile |

Re: [U-Boot] [PATCH v3 7/9] replace CONFIG_PRELOADER with CONFIG_SPL_BUILD

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-8-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > From: Aneesh V > > replace all occurences of CONFIG_PRELOADER with CONFIG_SPL_BUILD > > Signed-off-by: Aneesh V > Cc: Albert ARIBAUD > --- > Changes since RFC v1: > - none >

Re: [U-Boot] [PATCH v3 8/9] spl: Add support for common libraries and drivers

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-9-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Aneesh V > Signed-off-by: Daniel Schwierzeck > --- > Changes since RFC v1: > - none > > spl/Makefile | 11 +++ > 1 files changed, 11 insertions(+), 0

Re: [U-Boot] [PATCH v3 9/9] spl: add support for omap-common libraries

2011-07-26 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1311005361-26241-10-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Signed-off-by: Aneesh V > Signed-off-by: Daniel Schwierzeck > --- > Changes since RFC v1: > - none > > spl/Makefile |7 +++ > 1 files changed, 7 insertions(+), 0 de

Re: [U-Boot] OMAP3 SPL: merge window question

2011-07-26 Thread Wolfgang Denk
Dear Simon Schwarz, In message <20110718082935.GB3867@Zitronenbaum> you wrote: > > I'am working on the OMAP3 SPL which is part of my bachelor thesis. Some of the > code was already posted - but i staled my work to wait for the new SPL layout > and the work on OMAP4 by Aneeshi V. > > This weekend

Re: [U-Boot] [PATCH v3 2/7]Timer: Remove calls to set_timer outside arch/

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310808837-3286-1-git-send-email-graeme.r...@gmail.com> you wrote: > There is no need to use set_timer(). Replace with appropriate use of > get_timer() > > Signed-off-by: Graeme Russ > --- > Sorry Wolfgang, but this patch has been through a few versions before it >

Re: [U-Boot] [PATCH v3 3/7]Timer: Remove set_timer completely

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310808899-3325-1-git-send-email-graeme.r...@gmail.com> you wrote: > Signed-off-by: Graeme Russ > --- > Changes since v2: > - Added Signed-off-by > > Changes since v1 ((WIP) [Timer]API Rewrite): > - Rebased to 68d4230c3ccce96a72c5b99e48399bf1796fe3c6 > - Updated

Re: [U-Boot] [PATCH v3 4/7]Timer: Allow reset_timer() only for systems with low resolution timers

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310808956-3364-1-git-send-email-graeme.r...@gmail.com> you wrote: > Signed-off-by: Graeme Russ > --- > Changes since v2: > - Added Signed-off-by > > Changes since v1 ((WIP) [Timer]API Rewrite): > - Rebased to 68d4230c3ccce96a72c5b99e48399bf1796fe3c6 > - Introduc

Re: [U-Boot] [PATCH v3 5/7]Timer: Remove reset_timer() for non-Nios2 arches

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310809000-3402-1-git-send-email-graeme.r...@gmail.com> you wrote: > Signed-off-by: Graeme Russ > --- > Changes since v2: > - Added Signed-off-by > > Changes since v1 ((WIP) [Timer]API Rewrite): > - Rebased to 68d4230c3ccce96a72c5b99e48399bf1796fe3c6 > > arch/ar

Re: [U-Boot] [PATCH v3 6/7]Timer: Fix at91rm9200/spi.c timer usage

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310809041-3442-1-git-send-email-graeme.r...@gmail.com> you wrote: > Signed-off-by: Graeme Russ > --- > Changes since v2: > - Added Signed-off-by > > Changes since v1 ((WIP) [Timer]API Rewrite): > - Rebased to 68d4230c3ccce96a72c5b99e48399bf1796fe3c6 > > arch/ar

Re: [U-Boot] [PATCH v3 7/7]Timer: Remove reset_timer_masked()

2011-07-26 Thread Wolfgang Denk
Dear Graeme Russ, In message <1310809080-3481-1-git-send-email-graeme.r...@gmail.com> you wrote: > In some circumstances, reset_timer_masked() was called by timer_init() in > order to perform architecture specific timer initialisation. In such > cases, the required code in reset_timer_masked() has

Re: [U-Boot] AT91: rework and fixes

2011-07-26 Thread Andreas Bießmann
Dear all, Am 26.07.2011 14:59, schrieb Reinhard Meyer: > Dear Hong Xu, >> Hi Albert, >> As a suggestion, how about we setup a git branch and collect AT91 >> related patches during Reinhard's busy time and vocation time? If yes, >> can we ask for `pull request' from you? > > I do not think su

Re: [U-Boot] [PATCH 2/2] powerpc/85xx: provide 85xx flush_icache for cmd_cache

2011-07-26 Thread Kumar Gala
On May 23, 2011, at 1:38 PM, Matthew McClintock wrote: > This provides a function that will override the weak function > flush_icache to let 85xx boards to flush the icache > > cc: Kumar Gala > Signed-off-by: Matthew McClintock > --- > arch/powerpc/cpu/mpc85xx/start.S |2 ++ > 1 files chang

[U-Boot] Professional Web Design and Web Development Agency

2011-07-26 Thread Deepak
Hi, As many as 90% websites do not deliver business to their potential because they do not appeal to the target audience. And the reason most visitors leave a website is because of a poor design and navigation. So is your website really customer-ready? Not really, if we go by the a

Re: [U-Boot] [PATCH] Fix: watchdog timed out, if using md5 command

2011-07-26 Thread Jens Scharsig
Dear Wolfgang Denk: > Dear Jens Scharsig, > > Arghhh. Line wrapped, too. > > This is the last time I'm gonna fix your patches. PLEASE fix your > mailer! > Sorry about the trouble. I have many times the word wrap will be deactivated. Our admin will reset this option on each update. On future pat

Re: [U-Boot] [PATCH] MAKEALL: add -h/--help options

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303459303-28600-1-git-send-email-vap...@gentoo.org> you wrote: > Convert all the comments at the top of the file into help text for people > to easily get at with standard -h/--help options. > > Signed-off-by: Mike Frysinger > --- > MAKEALL | 100 > ++

Re: [U-Boot] [PATCH 1/4] sf: unify write enable commands

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303635958-10985-1-git-send-email-vap...@gentoo.org> you wrote: > Every spi flash uses the same write enable command, so unify this in > the common code. > > Signed-off-by: Mike Frysinger > --- > drivers/mtd/spi/eon.c|2 +- > drivers/mtd/spi/

Re: [U-Boot] [PATCH 2/4 v2] sf: unify write funcs

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303750709-7976-1-git-send-email-vap...@gentoo.org> you wrote: > Once we add a new page_size field for write lengths, we can unify the > write methods for most of the spi flash drivers. > > Signed-off-by: Mike Frysinger > --- > v2 > - push page program comm

Re: [U-Boot] [PATCH v2] sf: kill off now-unused local state

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1310157219-27682-1-git-send-email-vap...@gentoo.org> you wrote: > Now that the common spi_flash structure tracks all the info that these > drivers need, kill off their local state indirection and use just what > the common code provides. > > Signed-off-by: Mike Fr

Re: [U-Boot] [PATCH 4/4] sf: eon/stmicro: inline useless ID defines

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303635958-10985-4-git-send-email-vap...@gentoo.org> you wrote: > These defines are used in only one place, so just inline them. > > Signed-off-by: Mike Frysinger > --- > drivers/mtd/spi/eon.c |4 +--- > drivers/mtd/spi/stmicro.c | 25 -

Re: [U-Boot] [PATCH 5/4] sf: unify write disable commands

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303750794-8043-1-git-send-email-vap...@gentoo.org> you wrote: > Every spi flash uses the same write disnable command, so unify this in > the common code. > > Signed-off-by: Mike Frysinger > --- > drivers/mtd/spi/spi_flash_internal.h |9 + > drivers/

Re: [U-Boot] [PATCH 6/4] sf: sst: support newer standardized flashes

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303750794-8043-2-git-send-email-vap...@gentoo.org> you wrote: > Newer SST flashes have dropped the Auto Address Increment (AAI) word > programming (WP) modes in favor of the standard page programming mode > that most flashes now support. So add a flags field to t

Re: [U-Boot] [PATCH v2] env: allow people to force envcrc building

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1310157865-28441-1-git-send-email-vap...@gentoo.org> you wrote: > For people who want to manually extract the embedded environment so that > it can be manually packed into the final u-boot image, add a config opt > to force building of the envcrc tool. > > Signed-

Re: [U-Boot] [PATCH] constify default env

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303638201-3221-1-git-send-email-vap...@gentoo.org> you wrote: > I can't see any obvious needs for the default environment to be writable, > so make it const. > > Signed-off-by: Mike Frysinger > --- > common/env_common.c |4 ++-- > common/env_flash.c|

Re: [U-Boot] [PATCH] cmd_usage: constify

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303638204-3262-1-git-send-email-vap...@gentoo.org> you wrote: > The usage helper doesn't modify the command, so constify its input arg. > > Signed-off-by: Mike Frysinger > --- > common/command.c |2 +- > include/command.h |2 +- > 2 files changed, 2 in

Re: [U-Boot] [PATCH] disable security warning flags when possible

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1303754800-14317-1-git-send-email-vap...@gentoo.org> you wrote: > Some toolchains enable security warning flags by default, but these don't > really make sense in the u-boot world. Such as forcing changes like: > -printf(foo); > +printf("%s", foo); >

Re: [U-Boot] [PATCH 1/3] serial: push default_serial_console to drivers

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1304136211-1316-1-git-send-email-vap...@gentoo.org> you wrote: > Rather than sticking arch/board/driver specific logic in the common > serial code, push it all out to the respective drivers. The serial > drivers declare these funcs weak so that boards can still ov

Re: [U-Boot] [PATCH 2/3] serial: drop serial_register return value

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1304136211-1316-2-git-send-email-vap...@gentoo.org> you wrote: > The serial_register function never fails (always return 0), so change it > to a void function to avoid wasting overhead on it. > > Signed-off-by: Mike Frysinger > --- > common/serial.c |4 +---

Re: [U-Boot] [PATCH 3/3] serial: drop useless ctlr field

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1304136211-1316-3-git-send-email-vap...@gentoo.org> you wrote: > The multi serial support has a "ctlr" field which almost no one uses, > but everyone is forced to set to useless strings. So punt it. > > Funny enough, the only code that actually reads this field (

Re: [U-Boot] [PATCH] serial: implement common uart post test

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1305392175-31018-1-git-send-email-vap...@gentoo.org> you wrote: > The current arch/driver specific UART posts basically boil down to setting > the UART to loop back mode, then reading and writing data. If we ignore > the loop back part, the rest can be built upon

Re: [U-Boot] [PATCH] post: fix up I/O helper usage

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1304996478-1536-1-git-send-email-vap...@gentoo.org> you wrote: > The I/O API from Linux defaults to little endian accesses. In order to > do big endian accesses, there are a "be" variants. The "le32" variants > are arch-specific and not terribly common, so change

Re: [U-Boot] [PATCH] post: add gpio hotkey support

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1305046881-5818-1-git-send-email-vap...@gentoo.org> you wrote: > Now that we have the generic GPIO layer, we can easily provide a common > implementation for the post_hotkeys_pressed() function based on it. > > Signed-off-by: Mike Frysinger > --- > post/post.c |

Re: [U-Boot] [PATCH] post: use ARRAY_SIZE

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1305048515-15299-1-git-send-email-vap...@gentoo.org> you wrote: > We've got a handy dandy macro already for calculating the number of > elements in an array, so use it. > > Signed-off-by: Mike Frysinger > --- > post/board/lwmon/sysmon.c |

Re: [U-Boot] [PATCH v2] post: new nor flash test

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1305070540-29687-1-git-send-email-vap...@gentoo.org> you wrote: > This adds a simple flash test to automatically verify erasing, > writing, and reading of sectors. The code is based on existing > Blackfin tests but generalized for everyone to use. > > Signed-off-

Re: [U-Boot] [PATCH] simplify clobber behavior with out-of-tree builds

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1308976675-28145-1-git-send-email-vap...@gentoo.org> you wrote: > The targets/prerequisites are the same here; the rules only differ in > the recipes. So move the if logic protection to the recipe part so we > can keep the rest the same. > > Signed-off-by: Mike F

Re: [U-Boot] [PATCH] panic: add noreturn attribute

2011-07-26 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1309384684-26415-1-git-send-email-vap...@gentoo.org> you wrote: > Since panic() never returns, we should add an appropriate attribute to > let gcc improve optimization around it. > > Signed-off-by: Mike Frysinger > --- > include/common.h |2 +- > 1 files cha

  1   2   >