[U-Boot] [PATCH v11 30/30] arm: Make all linker scripts compatible with per-symbol sections

2013-04-09 Thread Benoît Thébaudeau
Let all ARM linker scripts handle properly -ffunction-sections and -fdata-sections. This will be useful for future changes in order to create symbol-specific sections in common .S files. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v11: None Changes in v10: -

[U-Boot] [PATCH v11 26/30] Revert mkconfig: start deprecating Makefile config targets

2013-04-09 Thread Benoît Thébaudeau
This reverts commit 1285a2808a254f3d1a809c1a541f0c0f746e03d7 since the migration of boards from Makefile to boards.cfg is now complete. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v11: None Changes in v10: None Changes in v9: None Changes in v8: - New patch.

[U-Boot] [PATCH v11 25/30] arm: Remove support for smdk6400

2013-04-09 Thread Benoît Thébaudeau
The migration of boards from Makefile to boards.cfg was due for v2012.03, but smdk6400 did not follow, and it does not build, so move it to scrapyard. It will still be possible to restore it from the Git history before fixing it. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com ---

Re: [U-Boot] [PATCH] mx28evk: add trimffs to nand command

2013-04-09 Thread Fabio Estevam
Hi Eric, On Tue, Apr 9, 2013 at 4:21 PM, Eric Bénard e...@eukrea.com wrote: that's the second time you ask this but mx28evk_nand.h doesn't exist, even in u-boot-imx tree, and you are the developer who added nand support to mx28evk in commit ab461be65dbfe3e2fa45f7cd836faa99663be5bb ;-)

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-09 Thread Benoît Thébaudeau
On Tuesday, April 9, 2013 9:48:30 PM, Benoît Thébaudeau wrote: From: Fabio Estevam fabio.este...@freescale.com Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT option so that other NAND controller drivers could use it when a 16-bit NAND is deployed. drivers/mtd/nand/ndfc has CONFIG_SYS_NDFC_16BIT,

Re: [U-Boot] Patman / buildman pull request

2013-04-09 Thread Tom Rini
On Mon, Apr 08, 2013 at 03:26:43PM -0700, Simon Glass wrote: Hi Tom, On Mon, Apr 8, 2013 at 9:54 AM, Tom Rini tr...@ti.com wrote: On Thu, Apr 04, 2013 at 02:28:26PM -0700, Simon Glass wrote: Hi Tom, I have brought in the patman changes for this release and also some changes that I

Re: [U-Boot] [PATCH v11 18/30] nand: mxc: Switch NAND SPL to generic SPL

2013-04-09 Thread Albert ARIBAUD
Hi Benoît, On Tue, 9 Apr 2013 21:48:47 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: This also fixes support for mx31pdk and tx25, which had been broken by commit e05e5de7fae5bec79617e113916dac6631251156. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com

Re: [U-Boot] [PATCH v11 18/30] nand: mxc: Switch NAND SPL to generic SPL

2013-04-09 Thread Benoît Thébaudeau
Hi Albert, On Tuesday, April 9, 2013 10:17:04 PM, Albert ARIBAUD wrote: Hi Benoît, On Tue, 9 Apr 2013 21:48:47 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: This also fixes support for mx31pdk and tx25, which had been broken by commit

Re: [U-Boot] [PATCH v11 18/30] nand: mxc: Switch NAND SPL to generic SPL

2013-04-09 Thread Benoît Thébaudeau
On Tuesday, April 9, 2013 10:57:04 PM, Benoît Thébaudeau wrote: Hi Albert, On Tuesday, April 9, 2013 10:17:04 PM, Albert ARIBAUD wrote: Hi Benoît, On Tue, 9 Apr 2013 21:48:47 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: This also fixes support for mx31pdk and

[U-Boot] [PATCH 1/5] omap5912-osk: Fix DRAM initialisation

2013-04-09 Thread Jon Hunter
The size of the DRAM for the omap5912-osk board is getting setup in the dram_init() function. However, for the current u-boot release this is too late and needs to be done in dram_init_banksize(). Therefore, add a dram_init_banksize() function for the omap5912-osk board and setup the DRAM size

[U-Boot] [PATCH 0/5] omap5912-osk: Fix u-boot support for board

2013-04-09 Thread Jon Hunter
Currently, u-boot support for the omap5912-osk board is broken and u-boot is not booting when program into flash. Fix u-boot support for this board. Jon Hunter (5): omap5912-osk: Fix DRAM initialisation omap5912-osk: Fix booting from NOR flash omap5912-osk: Fix device initialisation

[U-Boot] [PATCH 2/5] omap5912-osk: Fix booting from NOR flash

2013-04-09 Thread Jon Hunter
The omap5912-osk board is using a RAM based address as the linker location for code. This is causing several problems when attempting to run the latest u-boot code base on this board from flash. Update the default linker location for code to be in NOR flash at address 0x. The omap5912-osk

[U-Boot] [PATCH 3/5] omap5912-osk: Fix device initialisation

2013-04-09 Thread Jon Hunter
In the current u-boot, the device pin multiplexing and clock initialisation needs to be early during the boot process and before board_init() is called. U-boot is currently crashing on this board because this is not being done early enough. Therefore, add a s_init() function for the omap5912-osk

[U-Boot] [PATCH 4/5] omap5912-osk: Increase flash partition for u-boot

2013-04-09 Thread Jon Hunter
The current u-boot binary needs more than 128KB of flash space and so move the u-boot environment from an offset of 128KB to 256KB in flash to ensure the enviroment does not overlap with u-boot. Signed-off-by: Jon Hunter jon-hun...@ti.com --- include/configs/omap5912osk.h |6 +++--- 1 file

[U-Boot] [PATCH 5/5] omap5912-osk: Fix get_timer() and CONFIG_SYS_HZ

2013-04-09 Thread Jon Hunter
The function get_timer() should return time in ms and CONFIG_SYS_HZ should be set to 1000 by default. Fix both of these items. Signed-off-by: Jon Hunter jon-hun...@ti.com --- arch/arm/cpu/arm926ejs/omap/timer.c | 15 --- include/configs/omap5912osk.h |2 +- 2 files

Re: [U-Boot] [PATCH 2/5][v2] powerpc/mpc85xx: new SPL support for IFC NAND

2013-04-09 Thread Scott Wood
On 04/09/2013 12:04:18 AM, Prabhakar Kushwaha wrote: On 04/09/2013 06:25 AM, Scott Wood wrote: On 04/05/2013 09:38:32 PM, Prabhakar Kushwaha wrote: On 04/06/2013 02:10 AM, Scott Wood wrote: On 03/22/2013 02:08:05 AM, Prabhakar Kushwaha wrote: diff --git a/board/freescale/common/Makefile

[U-Boot] bootm does not work if netconsole is enabled

2013-04-09 Thread Michael Walle
Hi Joe, Hi Tom, If i have the netconsole enabled i cannot boot linux using the bootm command. This bug exists at least in 2013.01.01 and 2013.04-rc2 :/ Here is the output of the serial console of a successful startup: ## Booting kernel from Legacy Image at 0010 ... Image Name:

[U-Boot] [PATCH v2] spi: mxc_spi: Set master mode for all channels

2013-04-09 Thread Fabio Estevam
From: Fabio Estevam fabio.este...@freescale.com The glitch in the SPI clock line, which commit 3cea335c34 (spi: mxc_spi: Fix spi clock glitch durant reset) solved, is back now and itwas re-introduced by commit d36b39bf0d (spi: mxc_spi: Fix ECSPI reset handling). Actually the glitch is happening

[U-Boot] [PATCH v2 1/4] cam_enc_4xx: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Albert ARIBAUD
CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 12K max size between 10K image (text,rodata,data) and 2K BSS based on sizes reported for current build: textdata bss 9073 840 500 Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: - brought back

[U-Boot] [PATCH v2 0/4] Homogeneize semantics of CONFIG_SPL_MAX_SIZE

2013-04-09 Thread Albert ARIBAUD
CONFIG_SPL_MAX_SIZE and CONFIG_SPL_BSS_MAX_SIZE did not have constant semantics across all of U-boot. This patch series aims at fixing this by splitting the maximum size into separate image (code + data + rodata + linker list) size on the one hand, and BSS size on the other hand. Changes in v2: -

[U-Boot] [PATCH v2 2/4] da850evm, da850_am18xxevm: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Albert ARIBAUD
CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 32K max size between 24K image (text,rodata,data) and 8K BSS based on sizes reported for current build: textdata bss 156761316 108 Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: - fixed commit

[U-Boot] [PATCH v2 3/4] smdk5250, snow: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Albert ARIBAUD
CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 14K max size between 10K image (text,rodata,data) and 4K BSS based on sizes reported for current build: textdata bss 4136 904 0 Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: - fixed spacing

[U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Albert ARIBAUD
Remove SPL-related ASSERT() in arch/arm/cpu/u-boot.lds as this file is never used for SPL builds. Rewrite the ASSERT() in arch/arm/cpu/u-boot-spl.lds to separately test image (text,data,rodata...) size and BSS size each against its own max. Also, output section mmutable is not used in SPL

[U-Boot] zmodem ?

2013-04-09 Thread Brad Walker
I am curious to know about the status of support for zmodem. I've looked through the mail archives and it seems as though ymodem is supported. But, zmodem is currently not. Also, there is a kermit mode that is supported. Is my understanding correct? Thanks. -brad w.

[U-Boot] [PATCH] mx35 iomux: correct offset of IOMUXSW_INPUT_CTL register

2013-04-09 Thread Philip Paeps
This makes mxc_iomux_set_input() work as expected. Signed-off-by: Philip Paeps phi...@paeps.cx --- arch/arm/cpu/arm1136/mx35/iomux.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/arm1136/mx35/iomux.c b/arch/arm/cpu/arm1136/mx35/iomux.c index

[U-Boot] [PATCH v2] mx35 iomux: correct offsets of IOMUX registers

2013-04-09 Thread Philip Paeps
This makes mxc_iomux_set_input() work correctly. Previously, the incorrect offset of IOMUXSW_INPUT_CTL caused mxc_iomux_set_input() to write to the wrong register, possibly resulting in unexpected behaviour. Signed-off-by: Philip Paeps phi...@paeps.cx --- Changes in v2: - While here, also

Re: [U-Boot] [PATCH 1/5][v2] powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399

2013-04-09 Thread Scott Wood
On 04/08/2013 11:56:25 PM, Prabhakar Kushwaha wrote: On 04/09/2013 06:09 AM, Scott Wood wrote: On 04/05/2013 09:28:14 PM, Prabhakar Kushwaha wrote: On 04/06/2013 02:03 AM, Scott Wood wrote: On 03/22/2013 02:07:48 AM, Prabhakar Kushwaha wrote: IFC errata A003399 is valid for IFC NOR boot

[U-Boot] [PATCH] Do not call board_early_init_f() twice

2013-04-09 Thread Vadim Bendebury
Apparently due to a missed rebase conflict resolution board_early_init_f() is included twice in the list of initialization functions. Leave only the first occurrence. . built and boot an Exynos 5250 target Signed-off-by: Vadim Bendebury vben...@chromium.org --- common/board_f.c | 3 --- 1

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-09 Thread Scott Wood
On 04/09/2013 12:45:31 PM, Wolfgang Denk wrote: Dear Scott, In message 1365449512.28843.10@snotra you wrote: I think the terminology is just fine. It's not just invalidating the icache (flushing and invalidating are the same thing for cache lines which are not modified -- or are

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-09 Thread Joe Hershberger
Hi Michael, I just tested this on my Zynq target and it worked. However, you make a good point that it is possible for there to be more traces after the eth_halt call. I can't imagine the stack would like that in all situations (since eth_init() will not be called again by netconsole). I think

Re: [U-Boot] [PATCH v2 3/4] smdk5250, snow: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Minkyu Kang
On 10/04/13 08:14, Albert ARIBAUD wrote: CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 14K max size between 10K image (text,rodata,data) and 4K BSS based on sizes reported for current build: text data bss 4136 904 0 Signed-off-by: Albert ARIBAUD

[U-Boot] DWMMC / DWMCI question

2013-04-09 Thread TigerLiu
Hi, experts: What is the abbreviation of DWMMC / DWMCI? I could not google any doc introducing them! Are they the new types of EMMC device? Best wishes, ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/5][v2] powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399

2013-04-09 Thread Prabhakar Kushwaha
On 04/10/2013 05:11 AM, Scott Wood wrote: On 04/08/2013 11:56:25 PM, Prabhakar Kushwaha wrote: On 04/09/2013 06:09 AM, Scott Wood wrote: On 04/05/2013 09:28:14 PM, Prabhakar Kushwaha wrote: On 04/06/2013 02:03 AM, Scott Wood wrote: On 03/22/2013 02:07:48 AM, Prabhakar Kushwaha wrote: IFC

[U-Boot] which version of uboot support ARM A7

2013-04-09 Thread Li, Hai
Hi all, Does anybody know which version of uboot support ARM A7? And where I can get the ARM A7 patch for u-boot-2013.04-rc2.tar.bz2ftp://ftp.denx.de/pub/u-boot/u-boot-2013.04-rc2.tar.bz2? Thanks! Best Wishes Hai Li ___ U-Boot mailing list

<    1   2