[U-Boot] [PATCH] Suppressing Diagnostic Output for 'fw_setenv'

2008-08-30 Thread Grant Erickson
Added support for a ``-v'' option for fw_setenv to explicitly enable what was formerly default verbose diagnostic output when updating the environment. Signed-off-by: Grant Erickson [EMAIL PROTECTED] --- tools/env/fw_env.c | 43 +--

Re: [U-Boot] [PATCH 1/1] ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

2008-08-30 Thread Stefan Roese
Victor, On Saturday 30 August 2008, Victor Gallardo wrote: This patch adds GPCS, SGMII and M88E1112 PHY support for the AMCC PPC460GT/EX processors. Please find some comments below. Signed-off-by: Victor Gallardo [EMAIL PROTECTED] --- cpu/ppc4xx/4xx_enet.c | 116

Re: [U-Boot] ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller

2008-08-30 Thread Stefan Roese
Prodyut, On Friday 29 August 2008, Prodyut Hazarika wrote: Somehow your patch was malformatted though. Please see the From bdc... above. This should not be included in the patch mail. Did you create this patch with git format-patch and send it with git send-email? I created the patch

[U-Boot] [PATCH 1/1] ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

2008-08-30 Thread Victor Gallardo
This patch adds GPCS, SGMII and M88E1112 PHY support for the AMCC PPC460GT/EX processors. Signed-off-by: Victor Gallardo [EMAIL PROTECTED] --- cpu/ppc4xx/4xx_enet.c | 122 - cpu/ppc4xx/miiphy.c | 41 +++- include/ppc4xx_enet.h |

Re: [U-Boot] [PATCH 1/1] ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

2008-08-30 Thread Ben Warren
On Fri, Aug 29, 2008 at 11:20 PM, Victor Gallardo [EMAIL PROTECTED] wrote: This patch adds GPCS, SGMII and M88E1112 PHY support for the AMCC PPC460GT/EX processors. Signed-off-by: Victor Gallardo [EMAIL PROTECTED] --- cpu/ppc4xx/4xx_enet.c | 116

[U-Boot] [PATCH 2/3] avr32: data_bits should reflect the actual number of data bits

2008-08-30 Thread Haavard Skinnemoen
Make the data_bits enum in struct sdram_config reflect the actual number of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean 32 bits is just too confusing. Signed-off-by: Haavard Skinnemoen [EMAIL PROTECTED] --- include/asm-avr32/sdram.h |4 ++-- 1 files changed, 2

[U-Boot] [PATCH 1/3] avr32: Update README

2008-08-30 Thread Haavard Skinnemoen
Remove some outdated and/or unnecessary information, and add updated information about the toolchain and buildroot. Signed-off-by: Haavard Skinnemoen [EMAIL PROTECTED] --- doc/README.AVR32 | 24 1 files changed, 8 insertions(+), 16 deletions(-) diff --git

[U-Boot] [PATCH 3/3] avr32: refactor the portmux/gpio code

2008-08-30 Thread Haavard Skinnemoen
- Separate the portmux configuration functionality from the GPIO pin control API. - Separate the controller-specific code from the chip-specific code. - Allow ganged port configuration (multiple pins at once). - Add more flexibility to the canned peripheral select functions: -

Re: [U-Boot] [PATCH 1/1] ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

2008-08-30 Thread Stefan Roese
Ben, On Saturday 30 August 2008, Ben Warren wrote: +#if !defined(CONFIG_PHY_LESS) +#define CONFIG_PHY_LESS0x /* PHY-less mode */ +#define CONFIG_PHY_LESS_SPEED 1000 +#define CONFIG_PHY_LESS_DUPLEX FULL +#endif + Sorry, but this is not scalable. There are many

Re: [U-Boot] On simple standalone applications

2008-08-30 Thread Wolfgang Denk
Dear Alessio Sangalli, In message [EMAIL PROTECTED] you wrote: Hi, I have problems in writing an application for U-boot. I do not need U-boot functions (for now), I just have to write some registers and then fill some memory with a value. The HW will read that memory region for its usage.

[U-Boot] [PATCH 02/25] common/Makefile: add core command section

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/common/Makefile b/common/Makefile index 98b4dd4..5ba4561 100644 --- a/common/Makefile +++ b/common/Makefile @@ -42,6 +42,11 @@

[U-Boot] [PATCH 06/25] env_eeprom: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |2 +- common/env_eeprom.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index 3a20926..3f601e8 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 09/25] env_dataflash: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile|2 +- common/env_dataflash.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index a7d5b59..53e20e6 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 08/25] rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- README |2 +- common/cmd_nvedit.c |2 +- common/env_dataflash.c |4 ++-- include/configs/at91cap9adk.h |2 +- include/configs/at91rm9200dk.h |6 +++---

[U-Boot] [PATCH 07/25] cmd_eeprom: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |2 +- common/cmd_eeprom.c |6 -- 2 files changed, 1 insertions(+), 7 deletions(-) diff --git a/common/Makefile b/common/Makefile index 3f601e8..a7d5b59 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 10/25] rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- README |2 +- common/cmd_nvedit.c |2 +- common/env_common.c |2 +- common/env_nand.c |4 ++-- include/configs/MPC8313ERDB.h |

[U-Boot] [PATCH 12/25] rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- Makefile |2 +- README |2 +- board/LEOX/elpt860/README.LEOX |2 +- board/RPXlite_dw/README|2 +- common/cmd_nvedit.c|6 +++---

[U-Boot] [PATCH 11/25] env_nand: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |2 +- common/env_nand.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index 53e20e6..e7c3a8a 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 15/25] env_onenand: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |2 +- common/env_onenand.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index 93bcd03..4f333df 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 16/25] rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/cmd_nvedit.c |2 +- common/env_common.c |2 +- common/env_sf.c |4 ++-- include/configs/M54451EVB.h |2 +- include/configs/M54455EVB.h |2 +- 5 files changed, 6

[U-Boot] [PATCH 13/25] env_nvram: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile|2 +- common/env_nvram.c |9 ++--- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/common/Makefile b/common/Makefile index e7c3a8a..93bcd03 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 18/25] rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- board/xilinx/xilinx_enet/emac_adapter.c |4 ++-- common/cmd_nvedit.c |6 +++--- common/env_common.c |2 +- common/env_nowhere.c|4 ++--

[U-Boot] [PATCH 17/25] env_sf: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |2 +- common/env_sf.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index 4f333df..bc89741 100644 --- a/common/Makefile +++ b/common/Makefile

[U-Boot] [PATCH 23/25] env_flash: Move conditional compilation to Makefile

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile|2 +- common/env_flash.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/common/Makefile b/common/Makefile index 9074f93..00e9551 100644 --- a/common/Makefile +++

[U-Boot] [PATCH 21/25] cleanup use of CFG_ENV_IS_IN_FLASH

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
- #if CFG_ENV_IS_IN_FLASH - #if (CFG_ENV_IS_IN_FLASH == 1) - #define CFG_ENV_IS_IN_FLASH 0 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- board/barco/flash.c |2 +- board/bmw/flash.c |2 +- board/cpc45/flash.c |2 +-

[U-Boot] [PATCH 24/25] move cmd_get_data_size to command.c

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
add CMD_DATA_SIZE macro to enable it Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- board/amcc/yucca/cmd_yucca.c |2 -- common/cmd_i2c.c |1 - common/cmd_itest.c |2 -- common/cmd_mem.c | 29 -

[U-Boot] [PATCH 1/1] nvedit: rename error comment to CONFIG_ENV_IS_IN_

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/cmd_nvedit.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index f5b93df..f449715 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -60,7

Re: [U-Boot] [PATCH] ARM DaVinci: Fix broken HW ECC for large page NAND.

2008-08-30 Thread Bernard Blackham
Hugo Villeneuve wrote: ARM DaVinci: Fix broken HW ECC for large page NAND. Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED] Thanks for following up on this, Hugo. + #define CFG_DAVINCI_BROKEN_ECC + Versions of U-Boot = 1.3.3 and Montavista Linux kernels + generated bogus ECCs

[U-Boot] [PATCH 1/3] update linux/list

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- include/linux/list.h | 506 +++- include/linux/poison.h | 11 + 2 files changed, 472 insertions(+), 45 deletions(-) create mode 100644 include/linux/poison.h diff --git

[U-Boot] [PATCH 2/3] devices: merge to list_head

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/Makefile |1 - common/cmd_console.c |9 +- common/cmd_terminal.c | 10 +- common/console.c | 62 ++--- common/devices.c | 79 +++--- common/lists.c| 734

[U-Boot] [PATCH 1/1] davinci: fix remaining dm644x_eth

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- include/asm-arm/arch-davinci/emac_defs.h |4 ++-- net/eth.c|2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/asm-arm/arch-davinci/emac_defs.h

[U-Boot] u-boot-arm pull request

2008-08-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, please pull The following changes since commit 33aa4eac66b71c797bbc13b3afe432a2132947d4: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians are available in the git repository at: git://git.denx.de/u-boot-arm.git master Guennadi Liakhovetski (7):