Re: [U-Boot] [PATCH 0/9] Update support for CM-T35

2011-04-16 Thread Igor Grinberg
Hi Wolfgang, Albert, Sandeep, On 04/10/11 09:32, Igor Grinberg wrote: > Ping! > > > Wolfgang, > > > should I have also send this to Albert or/and Sandeep? > > > > On 04/05/11 10:08, Igor Grinberg wrote: > >> This patch serie s based on the latest U-Boot release (v2011.03) and >> updates support f

[U-Boot] [PATCH,V2] JFFS2: accelerate scanning.

2011-04-16 Thread Baidu Liu
Syncs up with jffs2 in the linux kernel: 1/ Change DEFAULT_EMPTY_SCAN_SIZE from 4KB to 256 Bytes. 2/ If the 1KB data is 0xFF after the cleanmarker, skip and scan the next sector. 3/ Change the buffer size from 4KB to 128KB which is the common size of erase block. For the 16MB nor flash, the

[U-Boot] [PATCH] nios2: Make STANDALONE_LOAD_ADDR configurable per board

2011-04-16 Thread Thomas Chou
Follow commit 8ae86b76c648d8bef97241c78e2fddb1c4f164d3 which changed the variable name. Fix this error, nios2-elf-ld: invalid hex number `-o' Signed-off-by: Thomas Chou --- for u-boot arch/nios2/config.mk |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/nios2/conf

[U-Boot] problem running u-boot from RAM

2011-04-16 Thread Eric Cooper
I'm encountering a strange problem trying to run recent versions of u-boot from RAM on my DockStar. I have version 2011.03 in NAND flash, and it boots OK and launches Linux OK. But if I use it to load u-boot.bin into RAM (at TEXT_BASE = 0x60) and type "go 60", it hangs soon after the relo

[U-Boot] [PATCH V2] JFFS2: bug fix for summary support.

2011-04-16 Thread Baidu Liu
This patch fixes some issues with JFFS2 summary support in U-Boot. 1/ Bug fix for summary support: we need to get the latest DIRENT. For example, if you create a file in linux jffs2 which config summary support, then you delete the file , you will not see the file in linux jffs2. But you can

[U-Boot] Question about relocation

2011-04-16 Thread Alessandro Rubini
Hello. I'm trying to make at91sam9261ek working again, but relocation overlaps the destinatin address. In this board, u-boot runs already in RAM. This is exactly like the nhk8815 that I ported a few hours ago, but while there the IPL loaded our code at the beginning of RAM, in this case the IPL lo

[U-Boot] [PATCH 2/3 V2] nhk8815: add support for relocation

2011-04-16 Thread Alessandro Rubini
From: Alessandro Rubini This patch defines all the needed symbols in the header file and removes the now-unused config.mk in board directory. Changes to board C file as requested. Signed-off-by: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- Sorry, just noted t

Re: [U-Boot] [PATCH v3 3/3] ARMV7: Vexpress: Add MMC support

2011-04-16 Thread Matt Waddel
On 04/13/2011 05:09 AM, Andy Fleming wrote: > On Wed, Mar 2, 2011 at 11:22 PM, wrote: >> From: Matt Waddel >> >> Added the board specific definitions to use the MMCI device. >> >> Signed-off-by: Matt Waddel > > Looks fine to me. I can apply this to my tree if that's fine with the > maintainer

[U-Boot] [PATCH V4 0/3] Add support for the MMC device to the vexpress

2011-04-16 Thread matt . waddel
From: Matt Waddel These patches add support for the ARM PrimeCell PL180 MultiMedia Interface. The Versatile Express was the test platform for these changes. --- Change log: v2 - Rename patch items to a more descriptive name (ie. mmci -> arm_mmci) Fixed conflicting fuction call and added pr

[U-Boot] [PATCH V4 3/3] ARMV7: Vexpress: Add MMC support

2011-04-16 Thread matt . waddel
From: Matt Waddel Added the board specific definitions to use the MMCI device. Signed-off-by: Matt Waddel --- board/armltd/vexpress/ca9x4_ct_vxp.c |9 + include/configs/ca9x4_ct_vxp.h |4 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/board/armltd/ve

[U-Boot] [PATCH V4 2/3] MMC: Add support for PL180 ARM mmc device

2011-04-16 Thread matt . waddel
From: Matt Waddel Add support for the ARM PrimeCell MultiMedia Interface - PL180. Ported from original device driver written by ST-Ericsson. Signed-off-by: Matt Waddel --- drivers/mmc/Makefile |1 + drivers/mmc/arm_pl180_mmci.c | 441 ++ dri

[U-Boot] [PATCH V4 1/3] MMC: Max blocks value adjustable

2011-04-16 Thread matt . waddel
From: Matt Waddel The maximum blocks value was hardcoded to 65535 due to a 16 bit register length. The value can change for different platforms. This patch makes the default the current value of 65535, but it is configurable for other platforms. Signed-off-by: Matt Waddel --- drivers/mmc/mmc.

Re: [U-Boot] (no subject)

2011-04-16 Thread jeffhemstreet
http://www.correodominicano.com/cool01.11.php?SID=664 ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] wassup

2011-04-16 Thread Sagar Heroorkar
Look what I found http://javilesa.com/meds.htm ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2] cmd_nvedit.c: clean up with checkpatch

2011-04-16 Thread Macpaul Lin
Code clean up of cmd_nvedit.c by using checkpatch.pl. Signed-off-by: Macpaul Lin --- Changes for v2: - Replace the ident characters for #ifdef from space to tab. common/cmd_nvedit.c | 148 +-- 1 files changed, 73 insertions(+), 75 deletions(-)

[U-Boot] [PATCH 3/3] nhk8815: move config targets from Makefile to boards.cfg

2011-04-16 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- BTW: please note that file is not sorted and has some white-space error: "dkb" is aligned with tabs while all other use spaces and there is a spurious tab after "Target" (both begin and end) Makefile |

[U-Boot] [PATCH 2/3] nhk8815: add support for relocation

2011-04-16 Thread Alessandro Rubini
From: Alessandro Rubini This patch defines all the needed symbols in the header file and removes the now-unused config.mk in board directory. Changes to board C file as requested. Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- board/st/nhk8815/config.mk | 26 ---

[U-Boot] [PATCH 1/3] nhk8815: remove platform.S, which was unused at link time

2011-04-16 Thread Alessandro Rubini
From: Alessandro Rubini This source file, which I got by the vendor in their own port, was not actually executing because lib-based compilation didn't call lowlevel_init (we have CONFIG_SKIP_LOWLEVEL_INIT). With the change to object-based linking, an undefined symbol in this file started hitting

[U-Boot] Imx51 processor hangs when we do an md 0xf0000000 (memory display) in u-boot

2011-04-16 Thread Greg Topmiller
We're are using the Freescale release L2.6.31_MX51_SDK_0912_Image and it will do this on a Freescale Babbage board and our design. It also does the same thing in Linux when we mmap the address 0xf000 and try to read from it. It does not hang on the Redboot.bin image supplied with the Frees

Re: [U-Boot] [PATCH] Fix the issue of _end symbol not being found while building

2011-04-16 Thread Sughosh Ganu
On Mon Apr 11, 2011 at 01:46:08AM +0530, Sughosh Ganu wrote: > Fix the nand_spl build for the hawkboard > > Signed-off-by: Sughosh Ganu > --- > nand_spl/board/davinci/da8xxevm/u-boot.lds |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/nand_spl/board/davinci/da8xxe

Re: [U-Boot] [PATCH] cmd_nvedit.c: clean up with checkpatch

2011-04-16 Thread Albert ARIBAUD
Hi Macpaul Lin, Le 16/04/2011 13:17, Macpaul Lin a écrit : > Hi all, > > 2011/4/16 Graeme Russ: >> On 16/04/11 16:22, Albert ARIBAUD wrote: >>> >>> If the goal is to have the !defined aligned, then maybe a solution here >>> would be toput a tab rather than a space after the #if? >>> > > Do you guy

Re: [U-Boot] [PATCH] mpc83xx fdt: do not adjust clock frequency of external UARTs

2011-04-16 Thread Tabi Timur-B04825
"David Müller (ELSOFT AG)" wrote: >> > Just out of curiosity -- do you have an example of a device tree with >> > an external UART? > Yes. May I see it? -- Timur Tabi Linux kernel developer ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.d

Re: [U-Boot] [PATCH] cmd_nvedit.c: clean up with checkpatch

2011-04-16 Thread Macpaul Lin
Hi all, 2011/4/16 Graeme Russ : > On 16/04/11 16:22, Albert ARIBAUD wrote: >> >> If the goal is to have the !defined aligned, then maybe a solution here >> would be toput a tab rather than a space after the #if? >> Do you guys means #if"\t"defined (XX) || "\t"defined (XX) instead of #if d

Re: [U-Boot] [PATCH V1 1/1] MX5: Keep L2 cache enabled before jump to kernel

2011-04-16 Thread Albert ARIBAUD
Le 15/04/2011 17:55, Jason Liu a écrit : > Hi, Stefano, > > 2011/4/15 Stefano Babic: >> On 04/13/2011 03:25 PM, Jason Liu wrote: >> >> Hi Jason, >> >>> Currently, Linux kernel does not do any L2 cache enable >>> Operation.So,Keep L2 cache enabled(L2EN=1) in the u-boot >>> before Jump to the Linux K

Re: [U-Boot] [PATCH] xilinx_emaclite.c ping-pong macro names

2011-04-16 Thread Albert ARIBAUD
Hi Alain, Le 15/04/2011 14:49, alain.pet...@space.unibe.ch a écrit : > Please find attached the checked patch. Sorry for the inconvenience. Please follow the rules for updated patches: (also, while patchwork seems to d

Re: [U-Boot] [PATCH] MIPS: Introduce --gc-sections for MIPS

2011-04-16 Thread Aaron Williams
I just tried it for our Octeon boards and saw a noticeable reduction in size. Our bootloader shrank from 1107840 to 941600 bytes. Size isn't too big of an issue for us, though it's nice to see it shrink to under 1MB again. -Aaron On Friday, April 15, 2011 08:50:57 AM Shinya Kuribayashi wrote:

[U-Boot] [PATCH v3 2/4] ftsdmc021: add register definitions of ftsdmc021

2011-04-16 Thread Macpaul Lin
Support registers definitions of ftsdmc021 SDRAM controller. Signed-off-by: Macpaul Lin --- Changes for v1-v3: No Change. include/faraday/ftsdmc021.h | 154 +++ 1 files changed, 154 insertions(+), 0 deletions(-) create mode 100644 include/faraday/ftsdmc

[U-Boot] [PATCH v3 1/4] ftahbc020s: Faraday FTAHBC020s AHB Bus Controller

2011-04-16 Thread Macpaul Lin
ftahbc020s.h provides basic definitions of this controller to help a SoC which use this AHB Controller could do scalable software settings in lowlevel_init.S. Signed-off-by: Macpaul Lin --- Changes for v1-v3: No Change. include/faraday/ftahbc020s.h | 94 +++

[U-Boot] [PATCH v3 4/4] ftsmc020: move ftsmc020 static mem controller to driver/mtd

2011-04-16 Thread Macpaul Lin
Move the header file and definitions of ftsmc020 static memory control unit from a320 SoC folder to "drivers/mtd" folder. This change will let other SoC which also use ftsmc020 could share the same header file. Signed-off-by: Macpaul Lin --- Changes for v2: - Move the header file of ftsmc020.h

[U-Boot] [PATCH v3 3/4] ftsdmc020: move ftsdmc020.h to include/faraday

2011-04-16 Thread Macpaul Lin
Move the header file "ftsdmc020.h" (SDRAM Controller) to "include/faraday" folder. This change will let other SoC which also use ftsdmc020 could share the same header file. Signed-off-by: Macpaul Lin --- Changes for v2: - Fix the include path of ftsdmc020 for a320evb. - v1 of this patch /patch

Re: [U-Boot] [PATCH 2/3] cpu9260: update board support

2011-04-16 Thread Albert ARIBAUD
Le 03/04/2011 18:35, Eric Bénard a écrit : > diff --git a/board/eukrea/cpu9260/cpu9260.c b/board/eukrea/cpu9260/cpu9260.c > index 61b6c33..9ec48a0 100644 > --- a/board/eukrea/cpu9260/cpu9260.c > +++ b/board/eukrea/cpu9260/cpu9260.c > @@ -188,26 +175,16 @@ int board_init(void) > > int dram_init(

Re: [U-Boot] [RFC] Centralise documentation of CONFIG_ options (and finding unused ones)

2011-04-16 Thread Graeme Russ
On 14/04/11 19:14, Kumar Gala wrote: >>> From this it is easy to find unused options (CONFIG_ARIA is found only as a >> #define in include/configs/aria.h for example) >> >> So my RFC is twofold: >> 1) Should we start to systematically remove unused options >> 2) Should we centralise all options in

Re: [U-Boot] [PATCH] cmd_nvedit.c: clean up with checkpatch

2011-04-16 Thread Graeme Russ
On 16/04/11 16:22, Albert ARIBAUD wrote: > Hi all, > > Le 15/04/2011 12:09, Wolfgang Denk a écrit : >> Dear Mike Frysinger, >> >> In message<201104150453.21441.vap...@gentoo.org> you wrote: >>> > On Friday, April 15, 2011 03:02:58 Macpaul Lin wrote: >> #if !defined(CONFIG_ENV_IS_IN_EEPR