[U-Boot] [PATCH v5] arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0

2012-07-07 Thread Tetsuyuki Kobayashi
save_boot_params_default() in cpu.c accesses uninitialized stack area when it compiled with -O0 (not optimized). This patch removes save_boot_params_default() and put the equivalent in start.S Signed-off-by: Tetsuyuki Kobayashi --- Hi Tom, Albert, I rewrite it again. I tested it quickly on my kz

[U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-07-07 Thread Marek Vasut
The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Stefano Babic Cc: Fabio Estevam Cc: Andy Fleming --- drivers/mmc/mxsmmc.c | 10 -- 1 file changed, 8 inserti

[U-Boot] [PATCH 3/4] MX28: Transfer small blocks via PIO in MXS MMC

2012-07-07 Thread Marek Vasut
Large blocks (> 512b) shall be transfered via DMA to make things a bit faster. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Stefano Babic Cc: Fabio Estevam Cc: Andy Fleming --- drivers/mmc/mxsmmc.c | 46 -- 1 file changed, 20 insertions(+), 2

[U-Boot] [PATCH 4/4] MX28: Fix MXS MMC DMA issues

2012-07-07 Thread Marek Vasut
The DMA didn't work properly because the DMA descriptor wasn't properly cleaned after it was used once. Also, the DMA_ENABLE bit was enabled/disabled too late. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Stefano Babic Cc: Fabio Estevam Cc: Andy Fleming --- drivers/mmc/mxsmmc.c | 34 ++

[U-Boot] [PATCH 2/4] MX28: Split out the PIO and DMA transfer functions

2012-07-07 Thread Marek Vasut
Move DMA and PIO data transfer parts into separate functions. Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Stefano Babic Cc: Fabio Estevam Cc: Andy Fleming --- drivers/mmc/mxsmmc.c | 154 -- 1 file changed, 86 insertions(+), 68 deletions(-

Re: [U-Boot] [PATCH] armv7: Fix to mistake clean the memory space

2012-07-07 Thread Andreas Bießmann
Dear Zhong Hongbo, Am Freitag, 6. Juli 2012 schrieb Zhong Hongbo : On 07/06/2012 09:57 PM, Andreas Bießmann wrote: > Dear Zhong Hongbo, > > On 06.07.2012 15:50, Zhong Hongbo wrote: >> On 07/06/2012 09:23 PM, Andreas Bießmann wrote: >>> On 06.07.2012 14:20, Zhong Hongbo wro

Re: [U-Boot] [PATCH v4 4/6] armv7: Use -march=armv7-a and thereby enable Thumb-2

2012-07-07 Thread Marek Vasut
Dear Aneesh V, > Hi Marek, > > On 07/06/2012 04:32 PM, Tetsuyuki Kobayashi wrote: > > Hello, > > > > On 2012/07/07, at 8:02, Marek Vasut wrote: > >> Dear Aneesh V, > >> > >>> Enable -march=armv7-a for armv7 platforms if the tool-chain > >>> supports it. This in turn results in Thumb-2 code gene

[U-Boot] [V3] arm: Fix to mistake clean the memory space

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo In currently, when __bss_start is equal to __bss_end__, The bss loop will clear all the things in memory space. But just only when __bss_end__ greater than __bss_start__, we do the clear bss section operation. Signed-off-by: Zhong Hongbo --- Change for V2 - Fixed bss

Re: [U-Boot] [PATCH] armv7: Fix to mistake clean the memory space

2012-07-07 Thread Zhong Hongbo
On 07/07/2012 03:29 PM, Andreas Bießmann wrote: > Dear Zhong Hongbo, > > Am Freitag, 6. Juli 2012 schrieb Zhong Hongbo : > > On 07/06/2012 09:57 PM, Andreas Bießmann wrote: > > Dear Zhong Hongbo, > > > > On 06.07.2012 15:50, Zhong Hongbo wrote: > >> On 07/06/2012 09:23 PM, And

[U-Boot] S3c64xx: Switch all I/O to use readl/writel function

2012-07-07 Thread Zhong Hongbo
This serial patch intent to: 1. Switch all I/O to use readl/writel function 2. Change nand_spl to use SPL framework 3. S3C64XX serial includes s3c6400 and s3c6410, Here seprate cpu and board file to support to board's of s3c6410. I test this patch on my s3c6410 development board. the log as follo

[U-Boot] [PATCH 01/13] smdk6400: Move smdk6400 board from Makefile to boards.cfg

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- Makefile | 20 board/samsung/smdk6400/config.mk |4 +--- boards.cfg |2 ++ include/configs/smdk6400.h |2 +- 4 files changed, 4 insertions(+), 24 deletions(-

[U-Boot] [PATCH 02/13] S3C64XX: Switch to use readl/writel to operate nand flash

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/include/asm/arch-s3c64xx/nand.h| 69 +++ arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 79 ++- board/samsung/smdk6400/lowlevel_init.S |8 ++-- drivers/mtd/nand/s3c64xx.c

[U-Boot] [PATCH 03/13] S3C64XX: Use readl/writel to operate uart

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 65 +-- arch/arm/include/asm/arch-s3c64xx/s3c64x0.h | 31 - arch/arm/include/asm/arch-s3c64xx/uart.h| 54 ++ board/samsung/smdk6400/

[U-Boot] [PATCH 04/13] S3C64XX: add pwm for s3c64xx support

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/s3c64xx/Makefile |1 + arch/arm/cpu/arm1176/s3c64xx/pwm.c | 189 +++ arch/arm/include/asm/arch-s3c64xx/pwm.h | 70 ++ arch/arm/include/asm/arch-s3c64xx/s3c6400.h |

[U-Boot] [PATCH 05/13] S3C64XX: reference s5p cpu time system for s3c64xx timer

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo The old s3c64xx timer is not work normal, Adopt s5p time design, It work perfect. Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/s3c64xx/timer.c | 195 -- 1 files changed, 94 insertions(+), 101 deletions(-) diff --git a/arch/arm/cpu/ar

[U-Boot] [PATCH 06/13] S3C64xx: mov cpu_init.S to the board directory

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo It just only do the memory init. The memory depend on the design of board. Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/s3c64xx/Makefile |2 +- arch/arm/cpu/arm1176/s3c64xx/cpu_init.S | 135 --- board/samsung/smdk6400/Makefile

[U-Boot] [PATCH 07/13] S3C6400: Delete nand_spl for S3C6400

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo The old spl use nand_spl directory file to support nand flash boot. We will adopt the new SPL framework to implement it. Signed-off-by: Zhong Hongbo --- board/samsung/smdk6400/config.mk | 28 --- boards.cfg |4 +- include/c

[U-Boot] [PATCH 08/13] S3C6400: Adopt SPL framwork to support spl for nand flash

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Adopt the new SPL framework to implement the SPL booting of the nand flash for S3C6400. Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/start.S| 17 +--- board/samsung/smdk6400/Makefile | 29 +- board/samsung/smdk6400/lowlevel

[U-Boot] [PATCH 09/13] S3C64XX: Change SROM init to use read/write operation

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/s3c64xx/Makefile |2 +- arch/arm/cpu/arm1176/s3c64xx/srom.c | 52 +++ arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 13 +++ arch/arm/include/asm/arch-s3c64xx/sromc.h | 4

[U-Boot] [PATCH 10/13] S3C64XX: Switch to use read/writel to operation clock system

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/cpu/arm1176/s3c64xx/reset.S|4 +- arch/arm/cpu/arm1176/s3c64xx/speed.c| 50 ++--- arch/arm/include/asm/arch-s3c64xx/clock.h | 147 +++ arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 167

[U-Boot] [PATCH 12/13] S3C6400: clear memory init variable

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 173 +-- board/samsung/smdk6400/mem_init.S | 110 +- 2 files changed, 56 insertions(+), 227 deletions(-) diff --git a/arch/arm/include/asm/arch-s

[U-Boot] [PATCH 11/13] S3c64xx: clear GPIO, Interrupt, Watchdog flag.

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 294 +-- board/samsung/smdk6400/lowlevel_init.S | 50 ++--- board/samsung/smdk6400/mem_init.S |4 + 3 files changed, 30 insertions(+), 318 deletions(-)

[U-Boot] [PATCH 13/13] S3C6400: Clear system clock variable

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo Signed-off-by: Zhong Hongbo --- arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 26 -- board/samsung/smdk6400/lowlevel_init.S |6 +++--- 2 files changed, 3 insertions(+), 29 deletions(-) diff --git a/arch/arm/include/asm/arch-s3c64xx/s3c6400.

Re: [U-Boot] [V3] arm: Fix to mistake clean the memory space

2012-07-07 Thread Albert ARIBAUD
Hi Zhong Hongbo, On Sat, 7 Jul 2012 17:47:16 +0800, Zhong Hongbo wrote: > From: Zhong Hongbo > > In currently, when __bss_start is equal to __bss_end__, > The bss loop will clear all the things in memory space. > > But just only when __bss_end__ greater than __bss_start__, > we do the clear b

Re: [U-Boot] [PATCH v4 4/6] armv7: Use -march=armv7-a and thereby enable Thumb-2

2012-07-07 Thread Albert ARIBAUD
Hi Marek, On Sat, 7 Jul 2012 09:59:52 +0200, Marek Vasut wrote: > Dear Aneesh V, > > > Hi Marek, > > > > On 07/06/2012 04:32 PM, Tetsuyuki Kobayashi wrote: > > > Hello, > > > > > > On 2012/07/07, at 8:02, Marek Vasut wrote: > > >> Dear Aneesh V, > > >> > > >>> Enable -march=armv7-a for armv7

Re: [U-Boot] [PATCH 2/7] HACK: rearrange link order for thumb

2012-07-07 Thread Albert ARIBAUD
Hi Allen, On Fri, 6 Jul 2012 16:17:19 -0700, Allen Martin wrote: > On Fri, Jul 06, 2012 at 01:44:32PM -0700, Stephen Warren wrote: > > On 07/06/2012 02:33 PM, Allen Martin wrote: > > > On Fri, Jul 06, 2012 at 12:09:43PM -0700, Stephen Warren wrote: > > >> On 07/06/2012 12:08 PM, Allen Martin wrot

Re: [U-Boot] RMLL/LSM 2012 - U-Boot Developer's Meeting

2012-07-07 Thread Albert ARIBAUD
Hi Wolfgang, On Fri, 06 Jul 2012 14:34:25 +0200, Wolfgang Denk wrote: > Hi all, > > this is just a reminder for the first U-Boot Developer's Meeting which > takes place next week in the context of the 13es Rencontres Mondiales > du Logiciel Libre (RMLL) aka 13th Libre Software Meeting (LSM) in >

Re: [U-Boot] [PATCH 0/3] arm: rmobile: kzm9g: enable booting Linux kernel

2012-07-07 Thread Tetsuyuki Kobayashi
Hi Albert, (2012/07/06 22:46), Albert ARIBAUD wrote: Hi Tetsuyuki, On Fri, 06 Jul 2012 16:48:05 +0900, Tetsuyuki Kobayashi wrote: Hi, Iwamatsu-san (2012/07/06 9:12), Nobuhiro Iwamatsu wrote: BTW, do you become a maintainer of kzm9g board? If it becomes a maintainer, please send the patch t

Re: [U-Boot] [PATCH V2] add new board vl_ma2sc

2012-07-07 Thread Albert ARIBAUD
Hi Jens, Le Mon, 16 Jan 2012 11:22:02 +0100, Jens Scharsig a écrit : > * add support for board VL+MA2SC > * adds vl_ma2sc_config for standard NOR boot configuration > * adds vl_ma2sc_ram_config for RAM load configuration > > Signed-off-by: Jens Scharsig > --- Applied to u-boot-arm/master, tha

[U-Boot] [PATCH v2 0/5] arm: rmobile: kzm9g: enable booting Linux kernel

2012-07-07 Thread Tetsuyuki Kobayashi
Hi, Iwamatsu-san I made v2 patch set for kzm9g. Please revert my previous 3 patches and apply this patch set. After this patch set, LTSI kernel can boot on KZM-A9-GT board. It seems stable as before. Tetsuyuki Kobayashi (5): arm: rmobile: kzm9g: Modify sdram area arm: rmobile: kzm9g: Adjust

Re: [U-Boot] [PATCH 2/3] ARM: mx6: Remove CONFIG_ARCH_CPU_INIT

2012-07-07 Thread Albert ARIBAUD
Hi Fabio, Le Thu, 1 Mar 2012 19:31:45 +0100, Marek Vasut a écrit : > > No need to define CONFIG_ARCH_CPU_INIT. > > > > All mx6 based boards should use arch_cpu_init(). > > > > Acked-by: Marek Vasut > > > Signed-off-by: Fabio Estevam > > --- Applied (rebased) to u-boot-arm/master, thanks.

[U-Boot] [PATCH v2 1/5] arm: rmobile: kzm9g: Modify sdram area

2012-07-07 Thread Tetsuyuki Kobayashi
Reserve first 16MB for RT-CPU (as same as kernel config). Signed-off-by: Tetsuyuki Kobayashi Signed-off-by: Nobuhiro Iwamatsu --- Changes for v2: - No change. Just rebased. include/configs/kzm9g.h |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/kzm9

[U-Boot] [PATCH v2 2/5] arm: rmobile: kzm9g: Adjust low level hardware setting

2012-07-07 Thread Tetsuyuki Kobayashi
Adjust low level hardware setting in s_init. Signed-off-by: Tetsuyuki Kobayashi Signed-off-by: Nobuhiro Iwamatsu --- Changes for v2: - No change. Just rebased. arch/arm/include/asm/arch-rmobile/sh73a0.h |4 +++- board/kmc/kzm9g/kzm9g.c|2 ++ 2 files changed, 5 inse

Re: [U-Boot] [PATCH 3/3] ARM: mx28: Remove CONFIG_ARCH_CPU_INIT

2012-07-07 Thread Albert ARIBAUD
Hi Fabio, On Thu, 1 Mar 2012 19:31:54 +0100, Marek Vasut wrote: > > No need to define CONFIG_ARCH_CPU_INIT. > > > > All mx28 based boards should use arch_cpu_init(). > > > > Acked-by: Marek Vasut > > > Signed-off-by: Fabio Estevam > > --- Applied to ub-boot-arm/master, thanks. Amicalemen

[U-Boot] [PATCH v2 3/5] arm: rmobile: kzm9g: change prompt to board specific

2012-07-07 Thread Tetsuyuki Kobayashi
Change U-Boot prompt to board specific one. Signed-off-by: Tetsuyuki Kobayashi Signed-off-by: Nobuhiro Iwamatsu --- Changes for v2: - No change. Just rebased. include/configs/kzm9g.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/kzm9g.h b/include/confi

[U-Boot] [PATCH v2 4/5] arm: rmobile: kzm9g: Add dummy member to struct sh73a0_rwdt

2012-07-07 Thread Tetsuyuki Kobayashi
Add dummy member to struct sh73a0_rwdt in sh73a0.h. Without this, initializing watch dog timer goes wrong. Signed-off-by: Tetsuyuki Kobayashi --- Changes for v2: - New arch/arm/include/asm/arch-rmobile/sh73a0.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/include/asm/arch-

[U-Boot] [PATCH v2 5/5] MAINTAINERS: Add Tetsuyuki Kobayshi for kzm9g

2012-07-07 Thread Tetsuyuki Kobayashi
Add Tetsuyuki Kobayshi for kzm9g in MAINTAINERS file. Signed-off-by: Tetsuyuki Kobayashi --- Changes for v2: - New MAINTAINERS |1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 45446f4..55a6c1b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -947,6 +947,7 @@

Re: [U-Boot] [PATCH] PXA: Enable CONFIG_PREBOOT on zipitz2

2012-07-07 Thread Albert ARIBAUD
Hi Marek, On Thu, 8 Mar 2012 16:46:18 +0100, Marek Vasut wrote: > Dear Marek Vasut, > > > Signed-off-by: Marek Vasut > > --- > > include/configs/zipitz2.h |1 + > > 1 files changed, 1 insertions(+), 0 deletions(-) > > > > diff --git a/include/configs/zipitz2.h b/include/configs/zipitz2.h

Re: [U-Boot] [PATCH 1/2] ARM: introduce arch_early_init_r()

2012-07-07 Thread Albert ARIBAUD
Hi Fabio, On Mon, 2 Apr 2012 18:19:45 -0300, Fabio Estevam wrote: > Introduce arch_early_init_r() function, which can be useful for doing > early initialization after relocation has happened. > > Signed-off-by: Fabio Estevam > --- > arch/arm/include/asm/u-boot-arm.h |1 + > arch/arm/lib/b

Re: [U-Boot] [PATCH 1/5] ARM: cache: Move the cp15 CR register read before flushing the cache.

2012-07-07 Thread Albert ARIBAUD
Hi R Sricharan, On Thu, 17 May 2012 15:22:54 +0530, R Sricharan wrote: > The following is the cleanup sequence in arch/arm/cpu/armv7/cpu.c > > int cleanup_before_linux(void) > { > ... > ... > dcache_disable(); > v7_outer_cache_disable(); > invalidate_dcache_all(); > } > > 1) invalidate_d

[U-Boot] Pull request: u-boot-arm/master

2012-07-07 Thread Albert ARIBAUD
Hi Wolfgang, The following changes since commit 558cd995d6d3eaa94fb342d142289a1fa2f76ba3: tools/mkenvimage.c: fix basename(3) usage (2012-07-02 20:21:49 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to d702b0811df53a1fc2d8049

Re: [U-Boot] [V3] arm: Fix to mistake clean the memory space

2012-07-07 Thread Zhong Hongbo
On 07/07/2012 05:58 PM, Albert ARIBAUD wrote: > Hi Zhong Hongbo, > > On Sat, 7 Jul 2012 17:47:16 +0800, Zhong Hongbo wrote: >> From: Zhong Hongbo >> >> In currently, when __bss_start is equal to __bss_end__, >> The bss loop will clear all the things in memory space. >> >> But just only when __b

[U-Boot] [V4] arm: Fix to mistake clean the memory space

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo In currently, when __bss_start is equal to __bss_end__, The bss loop will clear all the things in memory space. But just only when __bss_end__ greater than __bss_start__, we do the clear bss section operation. Signed-off-by: Zhong Hongbo --- Change for V1 - Fixed bss

Re: [U-Boot] [PATCH v3] doc: README.mx28_common: Add missing entry into Contents

2012-07-07 Thread Fabio Estevam
Hi Stefano, On Mon, Jun 18, 2012 at 3:31 PM, Marek Vasut wrote: > Dear Fabio Estevam, > >> commit 419ea2d84 (mx28: Split the README into a common part and a m28 >> specific part) missed an entry in the Contents section that was part of >> the original file. >> >> Add the missing entry for complet

Re: [U-Boot] [PATCH v3] doc: README.mx28_common: Add missing entry into Contents

2012-07-07 Thread Stefano Babic
On 07/07/2012 17:41, Fabio Estevam wrote: > Hi Stefano, > > On Mon, Jun 18, 2012 at 3:31 PM, Marek Vasut wrote: >> Dear Fabio Estevam, >> >>> commit 419ea2d84 (mx28: Split the README into a common part and a m28 >>> specific part) missed an entry in the Contents section that was part of >>> the o

Re: [U-Boot] [PATCH v2] mx28: Fix elftosb source link in README.mx28_common

2012-07-07 Thread Stefano Babic
On 27/06/2012 16:14, Anatolij Gustschin wrote: > The documented link to elftosb package tarball is not accessible, > change to another working link. > > Signed-off-by: Anatolij Gustschin > Cc: Otavio Salvador > Cc: Marek Vasut > Cc: Fabio Estevam > Acked-by: Otavio Salvador > --- Applied to

Re: [U-Boot] [PATCH] mx6: Make pad name macro consistent with the datasheet

2012-07-07 Thread Stefano Babic
On 15/06/2012 15:48, Ashok wrote: > > > Use the same name as defined in the datasheet. > DSP_CLK -> DISP_CLK > > Signed-off-by: Ashok Kumar Reddy Kourla > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- =

Re: [U-Boot] [PATCH 5/5] [PATCH 5/5] Add config file for the apf27

2012-07-07 Thread Stefano Babic
On 28/06/2012 22:36, Philippe Reynes wrote: > Signed-off-by: Philippe Reynes > --- Hi Philippe, > include/configs/apf27.h | 916 > +++ > 1 files changed, 916 insertions(+), 0 deletions(-) > create mode 100644 include/configs/apf27.h > > diff --git

Re: [U-Boot] [PATCH 3/5] [PATCH 3/5] Add nand_spl support for the apf27

2012-07-07 Thread Stefano Babic
On 28/06/2012 22:36, Philippe Reynes wrote: > Signed-off-by: Philippe Reynes > Signed-off-by: Eric Jarrige > --- Hi Philippe, > nand_spl/board/armadeus/apf27/Makefile | 79 + > nand_spl/board/armadeus/apf27/config.mk | 45 +++ > nand_spl/board/armadeus/apf27/start.S| 548 > +++

Re: [U-Boot] [PATCH 4/5] [PATCH 4/5] Add FPGA support for the apf27 board

2012-07-07 Thread Stefano Babic
On 28/06/2012 22:36, Philippe Reynes wrote: > Signed-off-by: Philippe Reynes > Signed-off-by: Eric Jarrige > --- Hi Philippe, > + * > + */ > +#include > + > +#if defined(CONFIG_FPGA) Maybe you can drop this and compiling this file only if CONFIG_FPGA is set, changing your Makefile > + > +#d

Re: [U-Boot] [PATCH 2/5] [PATCH 2/5] Add support for the armadeus APF27 board

2012-07-07 Thread Stefano Babic
On 28/06/2012 22:36, Philippe Reynes wrote: > Signed-off-by: Philippe Reynes > Signed-off-by: Eric Jarrige > Signed-off-by: Nicolas Colombain > --- Hi Philippe, > + rm -f $(SOBJS) $(OBJS) > + > +distclean: clean > + rm -f $(LIB) core *.bak $(obj).depend clean / distclean are not n

Re: [U-Boot] [PATCH 2/7] HACK: rearrange link order for thumb

2012-07-07 Thread Allen Martin
On Sat, Jul 07, 2012 at 03:15:36AM -0700, Albert ARIBAUD wrote: > Hi Allen, > > On Fri, 6 Jul 2012 16:17:19 -0700, Allen Martin wrote: > > On Fri, Jul 06, 2012 at 01:44:32PM -0700, Stephen Warren wrote: > > > On 07/06/2012 02:33 PM, Allen Martin wrote: > > > > On Fri, Jul 06, 2012 at 12:09:43PM -

[U-Boot] [PATCH] tools: Fix mingw tools build

2012-07-07 Thread Vladimir Yakovlev
mkenvimage does not build due to missed os_support.o and unsupported file modes S_IRGRP S_IWGRP. Tested with mingw 4.2.1 on ubuntu 12.04. Signed-off-by: Vladimir Yakovlev --- tools/Makefile |3 ++- tools/mkenvimage.c | 10 -- 2 files changed, 10 insertions(+), 3 deletions(-) d

Re: [U-Boot] [PATCH] usb_storage: fix ehci driver max transfer size

2012-07-07 Thread Marek Vasut
Dear Stefan Herbrechtsmeier, > Am 04.07.2012 08:57, schrieb Schneider, Kolja: > >> Am 03.07.2012 20:10, schrieb Marek Vasut: > The commit 5dd95cf93dfffa1d19a1928990852aac9f55b9d9 'usb_storage: > Fix EHCI "out of buffer pointers" with CD-ROM' introduce a bug in > usb_storage as it wr

Re: [U-Boot] S3c64xx: Switch all I/O to use readl/writel function

2012-07-07 Thread Zhong Hongbo
Add Guennadi to the loop. Thanks, hongbo On 07/07/2012 05:56 PM, Zhong Hongbo wrote: > This serial patch intent to: > 1. Switch all I/O to use readl/writel function > 2. Change nand_spl to use SPL framework > 3. S3C64XX serial includes s3c6400 and s3c6410, > Here seprate cpu and board file to supp

[U-Boot] [PATCH 1/2] common.h: Introduce DEFINE_CACHE_ALIGN_BUFFER

2012-07-07 Thread Marek Vasut
This is the out-of-function-scope counterpart of ALLOC_CACHE_ALIGN_BUFFER. Signed-off-by: Marek Vasut Cc: Tom Rini Cc: Ilya Yanok --- include/common.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/common.h b/include/common.h index 17c64b0..06d278f 100644 --- a/incl

[U-Boot] [PATCH 2/2] ehci-hcd.c, musb_core, usb.h: Add USB_DMA_MINALIGN define for cache alignment

2012-07-07 Thread Marek Vasut
From: Tom Rini The USB spec says that 32 bytes is the minimum required alignment. However on some platforms we have a larger minimum requirement for cache coherency. In those cases, use that value rather than the USB spec minimum. We add a cpp check to to define USB_DMA_MINALIGN and make use o