[U-Boot] [feature request] make TAGS target

2008-08-12 Thread Guennadi Liakhovetski
Hi This looks at least as an inconsistency: the TAGS file is removed on make distclean, but there is no make TAGS target. The easiest would be to remove removing TAGS, but better yet would be adding the target to build this file, taking into account the configured architecture, include/asm,

Re: [U-Boot] Resubmit : [PATCH] Correct ARM Versatile Timer Initialization

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:23 Tue 12 Aug , Peter Pearse wrote: -Original Message- From: Gururaja Hebbar K R [mailto:[EMAIL PROTECTED] Sent: 12 August 2008 03:57 To: Jean-Christophe PLAGNIOL-VILLARD Cc: u-boot@lists.denx.de; [EMAIL PROTECTED]; Peter Pearse Subject: RE: Resubmit : [PATCH]

[U-Boot] Pull request: nand-flash

2008-08-12 Thread Scott Wood
These patches are from the testing/mtd-2.6.22.1 branch of u-boot-nand-flash. Note that this is a significant change to the NAND subsystem (importing a newer upstream version) that affects the driver interface. If your board has NAND, please test. The following changes since commit

[U-Boot] AT91 Pull Request

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang please pull The following changes since commit cd82919e6c8a73b363a26f34b734923844e52d1c: Wolfgang Denk (1): Coding style cleanup, update CHANGELOG, prepare release are available in the git repository at: git://git.denx.de/u-boot-at91.git master Jean-Christophe

[U-Boot] NAND: bad block in whole chip

2008-08-12 Thread Alemao
Hi all, Im trying to use my NAND flash at MPC8360E-RDK based board. But it seems that the whole chip is bad blocked. Dont know if Im missing something... below some outputs: = nand info Device 0: NAND 64MiB 3,3V 8-bit, sector size 16 KiB = nand bad 4000 . . .

Re: [U-Boot] [WIP][PATCH 00/11] bootm refactoring

2008-08-12 Thread Kumar Gala
On Aug 12, 2008, at 3:12 PM, Wolfgang Denk wrote: Dear Kumar Gala, In message [EMAIL PROTECTED] you wrote: This patch set is a refactoring of the bootm functionality to get it ready for the sub-command functionality. Its a WIP but I wanted to get some early feedback to see if this

Re: [U-Boot] [PATCH] Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase

2008-08-12 Thread Liew Tsi Chung
Wolfgang, You're right. Can't ignore the chance that CFG_ENV_SIZE might be larger than CFG_ENV_SECT_SIZE, although both are defined in platform configuration file. I will send out the patch again with condition check. [/snip] u32 sector = 1; ... if

[U-Boot] [RFC][PATCH 03/15] Clean up usage of icache_disable/dcache_disable

2008-08-12 Thread Kumar Gala
There is no point in disabling the icache on 7xx/74xx/86xx parts and not also flushing the icache. All callers of invalidate_l1_instruction_cache() call icache_disable() right after. Make it so icache_disable() calls invalidate_l1_instruction_cache() for us. Also, dcache_disable() already calls

[U-Boot] [PATCH] Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] The CFG_ENV_SIZE is not suitable used for SPI flash erase sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE. Add condition check if CFG_ENV_SIZE is larger than CFG_ENV_SECT_SIZE, calculate the right number of sectors for erasing. Signed-off-by:

[U-Boot] [00/13] Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, This the first series of patch to Move conditional compilation to Makefile. It will introduce the following major change of MACRO rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY rename

[U-Boot] [PATCH] ColdFire: Add SSPI feature for MCF5445x

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] Signed-off-by: TsiChung Liew [EMAIL PROTECTED] --- cpu/mcf5445x/dspi.c | 178 +-- include/configs/M54455EVB.h | 16 - lib_m68k/board.c| 17 3 files changed, 204 insertions(+), 7

[U-Boot] [PATCH] ColdFire: Implement SBF feature for M5445EVB

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] Signed-off-by: TsiChung Liew [EMAIL PROTECTED] --- Makefile | 16 ++- board/freescale/m54455evb/m54455evb.c | 14 ++- board/freescale/m54455evb/u-boot.stm | 136 + cpu/mcf5445x/cpu_init.c |

[U-Boot] [PATCH] ColdFire: Multiple fixes for M5282EVB

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] Incorrect CFG_HZ value, change 100 to 1000. Rename #waring to #warning. RAMBAR1 uses twice in start.S, rename the later to FLASHBAR. Insert nop for DRAM setup. And, env_offset in linker file. Signed-off-by: TsiChung Liew [EMAIL PROTECTED] ---

[U-Boot] [PATCH 05/13] drivers/dma: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/dma/MCD_dmaApi.c|3 --- drivers/dma/MCD_tasks.c |4 drivers/dma/MCD_tasksInit.c |4 drivers/dma/Makefile|2 +- 4 files changed, 1 insertions(+), 12 deletions(-) diff --git

[U-Boot] [PATCH 06/13] drivers/input: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/input/Makefile |8 +--- drivers/input/i8042.c|4 drivers/input/keyboard.c |4 drivers/input/pc_keyb.c |4 drivers/input/ps2mult.c |4 drivers/input/ps2ser.c |4

[U-Boot] [PATCH 04/13] drivers/block: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/block/Makefile | 10 +- drivers/block/ahci.c|3 --- drivers/block/ata_piix.c|4 drivers/block/sil680.c |5 + drivers/block/sym53c8xx.c |5 -

[U-Boot] [PATCH 01/13] common: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- common/ACEX1K.c |4 common/Makefile | 42 +++--- common/altera.c |4 common/bedbug.c |4 common/cmd_onenand.c |4 common/cyclon2.c

[U-Boot] [PATCH 09/13] drivers/qe: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/qe/Makefile |3 ++- drivers/qe/qe.c |3 --- drivers/qe/uccf.c|2 -- drivers/qe/uec.c |5 - drivers/qe/uec_phy.c |3 --- 5 files changed, 2 insertions(+), 14 deletions(-) diff --git

[U-Boot] [PATCH 07/13] drivers/misc: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/misc/Makefile |6 +++--- drivers/misc/ali512x.c |5 - drivers/misc/ns87308.c |4 drivers/misc/status_led.c |4 drivers/serial/serial.c |4 ++--

[U-Boot] [PATCH 11/13] drivers/mtd/onenand: Move conditional compilation to Makefile

2008-08-12 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- drivers/mtd/onenand/Makefile|3 ++- drivers/mtd/onenand/onenand_base.c |5 - drivers/mtd/onenand/onenand_bbt.c |5 - drivers/mtd/onenand/onenand_uboot.c |5 - 4 files changed, 2

[U-Boot] [PATCH] ColdFire: Fix M5253EVB dram bring up issue

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] Signed-off-by: TsiChung Liew [EMAIL PROTECTED] --- board/freescale/m5253evbe/m5253evbe.c | 13 + 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/board/freescale/m5253evbe/m5253evbe.c b/board/freescale/m5253evbe/m5253evbe.c index

[U-Boot] [PATCH] ColdFire: Raise M5253EVBE uart baudrate to 115200 bps

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] Signed-off-by: TsiChung Liew [EMAIL PROTECTED] --- include/configs/M5253EVBE.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/M5253EVBE.h b/include/configs/M5253EVBE.h index f5e1b64..5653a39 100644 ---

[U-Boot] [PATCH] Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase

2008-08-12 Thread Tsi-Chung Liew
From: TsiChung Liew [EMAIL PROTECTED] The CFG_ENV_SIZE is not suitable used for SPI flash erase sector size. Signed-off-by: TsiChung Liew [EMAIL PROTECTED] --- common/env_sf.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/env_sf.c b/common/env_sf.c index

Re: [U-Boot] U-Boot and UBI

2008-08-12 Thread Kyungmin Park
Hi, On Tue, Aug 12, 2008 at 8:11 PM, Stefan Roese [EMAIL PROTECTED] wrote: On Tuesday 12 August 2008, Kyungmin Park wrote: On Monday 11 August 2008, Kyungmin Park wrote: Actually the Samsung implemented the UBI support on U-boot already and has used it internally. The big difference is the

[U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-08-12 Thread Stefan Roese
The following changes since commit cd82919e6c8a73b363a26f34b734923844e52d1c: Wolfgang Denk (1): Coding style cleanup, update CHANGELOG, prepare release are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Feng Kan (3): ppc4xx: Add initial

[U-Boot] [PATCH] ppc4xx: Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX processors

2008-08-12 Thread fkan
From: Prodyut Hazarika [EMAIL PROTECTED] Signed-off-by: Prodyut Hazarika [EMAIL PROTECTED] Acked-by: Feng Kan [EMAIL PROTECTED] --- cpu/ppc4xx/44x_spd_ddr2.c | 27 --- cpu/ppc4xx/cpu_init.c | 16 +++- include/asm-ppc/ppc4xx-sdram.h | 48

[U-Boot] [PATCH 3/3] FSL DDR: Add interactive DDR config support

2008-08-12 Thread Kumar Gala
Provide a mechanism to allow interactive configuration of DDR params. This is useful when trying to test various DDR settings to determine optimal configuration values for a given board. Signed-off-by: James Yang [EMAIL PROTECTED] Signed-off-by: Jon Loeliger [EMAIL PROTECTED] Signed-off-by: