Re: [U-Boot] ARM+uBoot

2008-09-28 Thread Albert ARIBAUD
mRon a écrit : > Hello, > > Could you tell me what does it mean that booting stops after: > Uncompressing Linux... done, booting the kernel. > > I load kernel using this command: > disk 0x40 1:6;bootm > > where 1:6 is partition with raw uImage. > > Cheers, > mRon It can mean quite

Re: [U-Boot] ARM+uBoot

2008-09-28 Thread Albert ARIBAUD
mRon a écrit : > Hello! Ekhm...I am the person who mailed you yesterday about uBoot :). :) > I > successfully flashed the Lacie - I mean that now it recognises the > flash. I am able to save environment variables, but it hangs after the > message I previously wrote. I'm moving this conversi

Re: [U-Boot] [UBoot] Hows to boot Linux Kernel from USB

2008-09-30 Thread Albert ARIBAUD
thaoth a écrit : > This seems here is wrong command. I should load uImage (not zImage) into > SDRAM memory. Hmm... So why don't you ? Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [UBoot] Hows to boot Linux Kernel from USB

2008-09-30 Thread Albert ARIBAUD
thaoth a écrit : > > > Albert ARIBAUD wrote: >> thaoth a écrit : >> >>> This seems here is wrong command. I should load uImage (not zImage) into >>> SDRAM memory. >> Hmm... So why don't you ? >> >> Amicalement, > > I have tr

Re: [U-Boot] [UBoot] Hows to boot Linux Kernel from USB

2008-10-01 Thread Albert ARIBAUD
thaoth a écrit : >>> can you do a 'file uImage' and copy the result ? > > ... > [EMAIL PROTECTED] boot]# file uImage > uImage: PPCBoot image When I look at my own uImages, they come out as: $ file /var/lib/tftpboot/uImage /var/lib/tftpboot/uImage: u-boot/PPCBoot image Not sure this is importan

Re: [U-Boot] [PATCH v4 0/4] Factorize ARM relocate_code instances

2013-05-27 Thread Albert ARIBAUD
Hi Simon, On Mon, 27 May 2013 07:56:48 -0700, Simon Glass wrote: > Hi Albert, > > On Mon, May 20, 2013 at 2:26 AM, Albert ARIBAUD > wrote: > > > Hi Benoît, > > > > On Sun, 19 May 2013 17:57:59 +0200 (CEST), Benoît Thébaudeau > > wrote: > > > &g

Re: [U-Boot] [PATCH] arm: Enable -ffunction-sections / -fdata-sections / --gc-sections

2013-05-27 Thread Albert ARIBAUD
Hi Tom, On Thu, 25 Apr 2013 13:40:22 -0400, Tom Rini wrote: > While other architectures have enabled these gcc / ld options for some > time on U-Boot itself, ARM has only been doing this on SPL. Enable this > on full U-Boot as well now. > > Cc: Albert ARIBAUD > Signe

[U-Boot] [PATCH v2 0/6] Optimize ARM relocation

2013-05-28 Thread Albert ARIBAUD
rences are now always valid even before relcation, and that only R_ARM_RELATIVE relocations will be met. Changes in v2: - use $< instead of $(obj)u-boot - new in V2: remove all dynsym references - various comment fixes Albert ARIBAUD (6): arm: ensure u-boot only uses relative relocations

[U-Boot] [PATCH v2 2/6] remove all references to .dynsym

2013-05-28 Thread Albert ARIBAUD
this patch can safely go through the ARM repository. Signed-off-by: Albert ARIBAUD --- Changes in v2: - new in V2: remove all dynsym references arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds |5 - arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds|5 - arch/arm/cpu/ixp/u-boot.lds

[U-Boot] [PATCH v2 1/6] arm: ensure u-boot only uses relative relocations

2013-05-28 Thread Albert ARIBAUD
Add a Makefile target ('checkarmreloc') which fails of the ELF binary contains relocation records of types other than R_ARM_RELATIVE. Signed-off-by: Albert ARIBAUD --- Changes in v2: - use $< instead of $(obj)u-boot Makefile |7 +++ arch/arm/config.mk |5 +

[U-Boot] [PATCH v2 4/6] arm: make __image_copy_{start, end} compiler-generated

2013-05-28 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain __image_copy_{start,end} yet remain unchanged. Also, __image_copy_end needs its own section; putting it in relocation sections changes their flags and makes relocation breaks. Signed-off-by: Albert ARIBAUD --- Changes in v2

[U-Boot] [PATCH v2 5/6] arm: make __rel_dyn_{start, end} compiler-generated

2013-05-28 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain relocation symbols yet remain unchanged. __rel_dyn_start and __rel_dyn_end each requires its own output section; putting them in relocation sections changes their flags and breaks relocation. Signed-off-by: Albert ARIBAUD

[U-Boot] [PATCH v2 3/6] arm: generalize lib/bss.c into lib/sections.c

2013-05-28 Thread Albert ARIBAUD
File arch/arm/lib/bss.c was initially defined for BSS only, but is now going to also contain definitions for other section-boundary-related symbols, so rename it for better accuracy. Also, remove useless 'used' attributes. Signed-off-by: Albert ARIBAUD --- Changes in v2: None ar

[U-Boot] [PATCH v2 6/6] arm: optimize relocate_code routine

2013-05-28 Thread Albert ARIBAUD
Use section symbols directly Drop support for R_ARM_ABS32 record types Eliminate unneeded intermediate registers Optimize relocation table iteration Signed-off-by: Albert ARIBAUD --- Changes in v2: None arch/arm/lib/relocate.S | 32 1 file changed, 12

Re: [U-Boot] [PATCH v4 0/4] Factorize ARM relocate_code instances

2013-05-28 Thread Albert ARIBAUD
Hi Fabio, On Tue, 21 May 2013 10:24:19 -0300, Fabio Estevam wrote: > Hi Benoît, > > On Mon, May 20, 2013 at 12:39 PM, Benoît Thébaudeau > wrote: > > > Can you test this series on mx31pdk (directly changed by this series), and > > some > > other i.MX EVK (e.g. ARMv7, so mx51evk or mx53*) boar

Re: [U-Boot] [PATCH v2 1/6] arm: ensure u-boot only uses relative relocations

2013-05-28 Thread Albert ARIBAUD
Hi Benoît, On Tue, 28 May 2013 19:04:23 +0200 (CEST), Benoît Thébaudeau wrote: > Hi Albert, > > On Tuesday, May 28, 2013 9:01:46 AM, Albert ARIBAUD wrote: > > Add a Makefile target ('checkarmreloc') which > > fails of the ELF binary contains relocation records

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2013-05-29 Thread Albert ARIBAUD
Hi Tom, On Tue, 28 May 2013 14:16:41 -0700, Tom Warren wrote: > Albert, > > Please pull u-boot-tegra/master into ARM/master. Thanks! > > ./MAKEALL for all the Tegra boards is OK, running a ./MAKEALL -a arm now. > tools/checkpatch.pl is clean. > > The following changes since commit fd725691797

[U-Boot] Conflict resolution for u-boot-arm/master and u-boot/master merge

2013-05-30 Thread Albert ARIBAUD
Hello Tom and Bo, While preparing for my ARM PR, I have encountered two merge conflicts. Their resolution can be found in branch 'merge_from_mainline' of ARM repo git://git.denx.de/u-boot-arm. For common/cmd_fpga.c, the merge conflict was trivial -- Simon's renaming fit somehow caused a need for

Re: [U-Boot] Conflict resolution for u-boot-arm/master and u-boot/master merge

2013-05-30 Thread Albert ARIBAUD
On Thu, 30 May 2013 14:55:41 +0200, Albert ARIBAUD wrote: > Hello Tom and Bo, > > While preparing for my ARM PR, I have encountered two merge conflicts. > Their resolution can be found in branch 'merge_from_mainline' of ARM > repo git://git.denx.de/u-boot-arm. >

Re: [U-Boot] Conflict resolution for u-boot-arm/master and u-boot/master merge

2013-05-30 Thread Albert ARIBAUD
Hi Simon, On Thu, 30 May 2013 09:38:56 -0700, Simon Glass wrote: > Hi Albert, > > On Thu, May 30, 2013 at 9:21 AM, Albert ARIBAUD > wrote: > > > On Thu, 30 May 2013 14:55:41 +0200, Albert ARIBAUD > > wrote: > > > > > Hello Tom and Bo, > &g

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

2013-05-30 Thread Albert ARIBAUD
3da0e5750b24a9491058df6126c7be577a276c09: arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200) Albert ARIBAUD (9): Merge branch 'u-boot-pxa/master' into 'u-boot-arm/master' Merge branch 'u-boot-imx/master

Re: [U-Boot] [PATCH 1/6] ARM: add secure monitor handler to switch to non-secure state

2013-05-31 Thread Albert ARIBAUD
Hi Andre, On Fri, 31 May 2013 11:23:16 +0200, Andre Przywara wrote: > software_interrupt is currently a panic routine. So it is not actually > used by u-boot, it's just there to dump some state and eventually call > reset_cpu(). > So I feel that since I am now the only user of software_interru

Re: [U-Boot] [PATCH 1/6] ARM: add secure monitor handler to switch to non-secure state

2013-06-01 Thread Albert ARIBAUD
Hi Christoffer, On Fri, 31 May 2013 16:50:09 -0700, Christoffer Dall wrote: > On Fri, May 31, 2013 at 11:23:16AM +0200, Andre Przywara wrote: > > On 05/31/2013 03:02 AM, Christoffer Dall wrote: > > This is added later in 5/6. For reviewing purposes I split the > > patches up to do the non-secur

Re: [U-Boot] [PATCH 1/6] ARM: add secure monitor handler to switch to non-secure state

2013-06-01 Thread Albert ARIBAUD
On Sat, 1 Jun 2013 12:06:24 +0200, Albert ARIBAUD wrote: > Hi Christoffer, > > On Fri, 31 May 2013 16:50:09 -0700, Christoffer Dall > wrote: > > > On Fri, May 31, 2013 at 11:23:16AM +0200, Andre Przywara wrote: > > > On 05/31/2013 03:02 AM, Christoffer Dall wrote

Re: [U-Boot] uboot ERROR cannot umount.

2013-06-02 Thread Albert ARIBAUD
Hi mind, On Sat, 1 Jun 2013 12:01:44 +0530, mind entropy wrote: > Hi, > I am setting up a nfs boot and I am getting a ***ERROR: Cannot umount. > How can I fix this? See ./README in the U-Boot source code. > Thanks, > Gautam. Amicalement, -- Albert. _

Re: [U-Boot] Please pull u-boot-ti/master

2013-06-05 Thread Albert ARIBAUD
Hi Tom, On Wed, 5 Jun 2013 08:54:18 -0400, Tom Rini wrote: > Hello, > > The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09: > > arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200) > > are available in the git repository at: > > git://git.denx.de/u-bo

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

2013-06-05 Thread Albert ARIBAUD
Hello Tom, The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09: arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to 4596dcc1d4ea5763e0f92cf5becd9f

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2013-06-07 Thread Albert ARIBAUD
Hi Tom, On Thu, 6 Jun 2013 09:30:51 -0700, Tom Warren wrote: > Albert, > > Please pull u-boot-tegra/master into ARM/master. Thanks! > > ./MAKEALL -s tegra AOK, checkpatch.pl is clean. > > The following changes since commit 4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674: > > am33xx/omap: Move sav

Re: [U-Boot] [PULL] : Please pull u-boot-imx

2013-06-08 Thread Albert ARIBAUD
Hi Stefano, On Thu, 06 Jun 2013 17:55:33 +0200, Stefano Babic wrote: > Hi Albert, > > please pull from u-boot-imx, thanks. > > The following changes since commit cac423a730d3506154744485af1bbc1cd3a1e6a8: > > Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' (2013-05-11 > 22:24:28 +02

Re: [U-Boot] Please pull u-boot-ti/master

2013-06-08 Thread Albert ARIBAUD
Hi Tom, On Fri, 7 Jun 2013 15:19:21 -0400, Tom Rini wrote: > Tom Rini (4): > arm: Remove OMAP2420H4 and all omap24xx support This one removes not only 2420h4 but also tnetv107x_evm. Is that normal? Amicalement, -- Albert. ___ U-Boot mailing l

Re: [U-Boot] 2013.07-rc1 plans?

2013-06-10 Thread Albert ARIBAUD
Hi Otavio, On Sun, 9 Jun 2013 12:54:31 -0300, Otavio Salvador wrote: > Hello, > > I'd like to know what the plains regarding rc releases? Dunno right now what Tom is planning, but before it goes out, I would like to first finish going through my current todo on patchwork (and also sort out the

Re: [U-Boot] [PATCH] LaCie kirkwood boards: allow disk > 2TB

2013-06-10 Thread Albert ARIBAUD
Hi Simon, On Mon, 10 Jun 2013 16:29:26 +0200, Simon Guinot wrote: > On Mon, Jun 10, 2013 at 04:20:49PM +0200, Frédéric Leroy wrote: > > > > Le 10/06/2013 15:44, Simon Guinot a écrit : > > > On Mon, Jun 10, 2013 at 03:30:53PM +0200, Frederic Leroy wrote: > > > > From: Frédéric Leroy > > > > > >

Re: [U-Boot] Please pull u-boot-ti/master

2013-06-10 Thread Albert ARIBAUD
Hi Michael, On Mon, 10 Jun 2013 11:55:31 +0200, Michael Trimarchi wrote: > This patch fix the omap access to the transceiver Please do not post new patches inside an existing thread, especially a pull request thread. Amicalement, -- Albert. ___ U-Bo

Re: [U-Boot] [PATCH] arm/km: make local functions static

2013-06-10 Thread Albert ARIBAUD
Hi Holger, On Mon, 6 May 2013 15:04:51 +0200, Holger Brunck wrote: > Signed-off-by: Holger Brunck > --- > board/keymile/km_arm/km_arm.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c > index eda9199..

Re: [U-Boot] Please pull u-boot-ti/master

2013-06-10 Thread Albert ARIBAUD
Hi Tom, On Mon, 10 Jun 2013 11:38:56 -0400, Tom Rini wrote: > Hello, > > > The following changes since commit 10e167329b029890a4c704f094822da5f259b886: > > Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-06-08 > 14:35:10 +0200) > > are available in the git repository at: >

Re: [U-Boot] [PATCH v4 1/7] arm: add MMU/D-Cache support for Faraday cores

2013-06-10 Thread Albert ARIBAUD
Hi Kuo-Jung, On Tue, 7 May 2013 14:25:07 +0800, Kuo-Jung Su wrote: > diff --git a/arch/arm/include/asm/dma-mapping.h > b/arch/arm/include/asm/dma-mapping.h > index 5bbb0a0..5a13af5 100644 > --- a/arch/arm/include/asm/dma-mapping.h > +++ b/arch/arm/include/asm/dma-mapping.h > @@ -3,6 +3,9 @@ >

Re: [U-Boot] [PATCH v4 2/7] arm: add Faraday common utilities

2013-06-10 Thread Albert ARIBAUD
Hi Kuo-Jung, On Tue, 7 May 2013 14:25:08 +0800, Kuo-Jung Su wrote: > diff --git a/arch/arm/include/asm/mach-types.h > b/arch/arm/include/asm/mach-types.h > index 440b041..a103922 100644 > --- a/arch/arm/include/asm/mach-types.h > +++ b/arch/arm/include/asm/mach-types.h Do not assign to mach-

Re: [U-Boot] [PATCH v4 6/7] arm: add Faraday firmware image utility

2013-06-10 Thread Albert ARIBAUD
Hi Kuo-Jung, On Tue, 7 May 2013 14:25:12 +0800, Kuo-Jung Su wrote: > From: Kuo-Jung Su > > Signed-off-by: Kuo-Jung Su > CC: Albert Aribaud > --- > Changes for v4: >- Coding Style cleanup. >- Break up from [arm: add Faraday A36x SoC platform supp

Re: [U-Boot] [PATCH v4 7/7] arm: add Faraday A36x SoC platform support

2013-06-10 Thread Albert ARIBAUD
Hi Kuo-Jung, On Tue, 7 May 2013 14:25:13 +0800, Kuo-Jung Su wrote: > arch/arm/cpu/faraday/a360/Makefile| 49 + > arch/arm/cpu/faraday/a369/Makefile| 50 + > arch/arm/cpu/faraday/a369/cmd_fa606.c | 77 > arch/arm/include/asm/arch-a360/hardware.h | 73

Re: [U-Boot] [PATCH v3] cosmetic: arm: fix comments in arch/arm/lib/crt0.S

2013-06-10 Thread Albert ARIBAUD
Hi Masahiro, On Wed, 15 May 2013 17:33:16 +0900, Masahiro Yamada wrote: > Signed-off-by: Masahiro Yamada > --- > > Changes for v2: >- Fix one more comment > > Changes for v3: >- Fix the commit log to indicate > * this patch is entirely cosmetic > * which part was changed at

Re: [U-Boot] [PATCH v2] ARM: highbank: compile misc_init_r only if CONFIG_MISC_INIT_R

2013-06-11 Thread Albert ARIBAUD
Hi Rob, On Tue, 21 May 2013 16:33:44 -0500, Rob Herring wrote: > From: Rob Herring > > Compile misc_init_r only if CONFIG_MISC_INIT_R is enabled. > > Signed-off-by: Rob Herring > --- > board/highbank/highbank.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/board/highbank/highb

Re: [U-Boot] [PATCH] OpenRD: relocate environment to 640kB

2013-06-11 Thread Albert ARIBAUD
Hi Sascha, On Mon, 27 May 2013 11:42:26 +0200, Sascha Silbe wrote: > U-Boot has become slightly larger than where the environment sector > was previously located. Saving the environment would brick the device. > > Relocate the environment to where it is with the stock (i.e. Marvell > USP) U-Boo

[U-Boot] [PATCH v3 1/6] arm: ensure u-boot only uses relative relocations

2013-06-11 Thread Albert ARIBAUD
Add a Makefile target ('checkarmreloc') which fails if the ELF binary contains relocation records of types other than R_ARM_RELATIVE. Signed-off-by: Albert ARIBAUD --- Changes in v3: - fix commit message typo (of -> if) Changes in v2: - use $< instead of $(obj)u-boot Makefile

[U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-11 Thread Albert ARIBAUD
be met. Changes in v3: - fix commit message typo (of -> if) - fix commit message typo (breaks -> break) Changes in v2: - use $< instead of $(obj)u-boot - new in V2: remove all dynsym references - various comment fixes Albert ARIBAUD (6): arm: ensure u-boot only uses relative relocations

[U-Boot] [PATCH v3 3/6] arm: generalize lib/bss.c into lib/sections.c

2013-06-11 Thread Albert ARIBAUD
File arch/arm/lib/bss.c was initially defined for BSS only, but is now going to also contain definitions for other section-boundary-related symbols, so rename it for better accuracy. Also, remove useless 'used' attributes. Signed-off-by: Albert ARIBAUD --- Changes in v3: None Cha

[U-Boot] [PATCH v3 6/6] arm: optimize relocate_code routine

2013-06-11 Thread Albert ARIBAUD
Use section symbols directly Drop support for R_ARM_ABS32 record types Eliminate unneeded intermediate registers Optimize relocation table iteration Signed-off-by: Albert ARIBAUD --- Changes in v3: None Changes in v2: None arch/arm/lib/relocate.S | 32 1 file

[U-Boot] [PATCH v3 2/6] remove all references to .dynsym

2013-06-11 Thread Albert ARIBAUD
this patch can safely go through the ARM repository. Signed-off-by: Albert ARIBAUD --- Changes in v3: None Changes in v2: - new in V2: remove all dynsym references arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds |5 - arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds|5 - arch/arm/cpu

[U-Boot] [PATCH v3 5/6] arm: make __rel_dyn_{start, end} compiler-generated

2013-06-11 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain relocation symbols yet remain unchanged. __rel_dyn_start and __rel_dyn_end each requires its own output section; putting them in relocation sections changes their flags and breaks relocation. Signed-off-by: Albert ARIBAUD

[U-Boot] [PATCH v3 4/6] arm: make __image_copy_{start, end} compiler-generated

2013-06-11 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain __image_copy_{start,end} yet remain unchanged. Also, __image_copy_end needs its own section; putting it in relocation sections changes their flags and makes relocation break. Signed-off-by: Albert ARIBAUD --- Changes in v3

Re: [U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-11 Thread Albert ARIBAUD
Hi Albert, On Tue, 11 Jun 2013 14:17:29 +0200, Albert ARIBAUD wrote: > This series optimizes relocation by ensuring ARM > binaries only use one type of relocation record, > R_ARM_RELATIVE., then optimizing relocation code > accordingly. This is a cosmetic version only; if no o

Re: [U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-11 Thread Albert ARIBAUD
Hi Lubomir, On Tue, 11 Jun 2013 17:22:17 +0300, Lubomir Popov wrote: > Hi Albert, > Applied the series to a relatively fresh (yesterday's) u-boot-ti/master > and tested on a custom OMAP5430 board. Boots normally. USB storage and > Ethernet (dhcp & ping), SD/MMC, I2C are all working. > > Tested

Re: [U-Boot] [PATCH v4 1/7] arm: add MMU/D-Cache support for Faraday cores

2013-06-11 Thread Albert ARIBAUD
Hi Kuo-Jung, On Tue, 11 Jun 2013 11:09:57 +0800, Kuo-Jung Su wrote: > 2013/6/11 Albert ARIBAUD : > > Hi Kuo-Jung, > > > > On Tue, 7 May 2013 14:25:07 +0800, Kuo-Jung Su > > wrote: > > > >> diff --git a/arch/arm/include/asm/dma-mapping.h > >&

Re: [U-Boot] [PATCH v2 17/21] arm: Implement the 'fake' go command

2013-06-11 Thread Albert ARIBAUD
Hi Simon, On Tue, 11 Jun 2013 11:14:49 -0700, Simon Glass wrote: > Implement this feature on ARM for tracing. > > It would be nice to have generic bootm support so that it is easily > implemented on any arch. > > Signed-off-by: Simon Glass > --- > Changes in v2: None > > arch/arm/lib/bootm.

Re: [U-Boot] [PATCH v2 17/21] arm: Implement the 'fake' go command

2013-06-11 Thread Albert ARIBAUD
Hi Simon, On Tue, 11 Jun 2013 13:02:56 -0700, Simon Glass wrote: > Hi Albert, > > On Tue, Jun 11, 2013 at 12:59 PM, Albert ARIBAUD > wrote: > > > Hi Simon, > > > > On Tue, 11 Jun 2013 11:14:49 -0700, Simon Glass > > wrote: > > > > > Imp

Re: [U-Boot] [PATCH v2 17/21] arm: Implement the 'fake' go command

2013-06-11 Thread Albert ARIBAUD
Hi Simon, On Tue, 11 Jun 2013 14:17:42 -0700, Simon Glass wrote: > Hi Albert, > > > On Tue, Jun 11, 2013 at 1:21 PM, Albert ARIBAUD > wrote: > > > Hi Simon, > > > > On Tue, 11 Jun 2013 13:02:56 -0700, Simon Glass > > wrote: > > > > >

Re: [U-Boot] [PATCH 0/2] fix displaying IRQ stack info

2013-06-12 Thread Albert ARIBAUD
On Mon, 27 May 2013 14:29:20 +0900, Masahiro Yamada wrote: > These series of patches fix the location of > displaying IRQ stack infomation. > > Because ARM architecture supports generic_board, > I separated my commit into 2 patches. > > The first one fix arch/arm/lib/board.c > The second one fi

[U-Boot] [STATUS] ARM - pending PRs or patches for -rc1

2013-06-12 Thread Albert ARIBAUD
Hello, (cc:ing all ARM related repo custodians for PRs) I have cleaned up my todo list for 2013.07 and am now preparing for -rc1. ARM related repo custodians who have PRs still pending to be sent to me, please do now. Any patches that their submitter feels should be in some ARM repo by now but

Re: [U-Boot] U-boot for 64bit ARMv8

2013-06-12 Thread Albert ARIBAUD
Hi Tom, On Wed, 12 Jun 2013 12:33:39 -0400, Tom Rini wrote: > On Wed, Jun 12, 2013 at 06:10:06AM -0700, Richard Schmitt wrote: > > > Is anyone considering porting/supporting uboot for ARMv8. ?Our initial > > investigation of boot loader support for ARMv8 indicates that the only > > boot loader

Re: [U-Boot] U-boot for 64bit ARMv8

2013-06-12 Thread Albert ARIBAUD
Hi Tom, On Wed, 12 Jun 2013 13:47:18 -0400, Tom Rini wrote: > On Wed, Jun 12, 2013 at 06:54:54PM +0200, Albert ARIBAUD wrote: > > Hi Tom, > > > > On Wed, 12 Jun 2013 12:33:39 -0400, Tom Rini wrote: > > > > > On Wed, Jun 12, 2013 at 06:10:06AM -0700, Rich

Re: [U-Boot] crash in usb_stor_get_info using pre-relocation address for ss->transport

2013-06-12 Thread Albert ARIBAUD
Hi Chris, On Thu, 13 Jun 2013 13:16:17 +1200, Chris Packham wrote: > On Thu, Jun 13, 2013 at 12:02 PM, Chris Packham > wrote: > > Hi, > > > > I've just found a crash in usb_stor_get_info (actually usb_inquiry > > which gets auto-inlined). The cause seems to be that ss->transport is > > set to

Re: [U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-13 Thread Albert ARIBAUD
Hi Albert, On Tue, 11 Jun 2013 14:47:29 +0200, Albert ARIBAUD wrote: > Hi Albert, > > On Tue, 11 Jun 2013 14:17:29 +0200, Albert ARIBAUD > wrote: > > > This series optimizes relocation by ensuring ARM > > binaries only use one type of relocation record, > >

Re: [U-Boot] [PATCH] FSL espi: Return all data read from device unmodified.

2013-06-13 Thread Albert ARIBAUD
Hi Jagan, Dale, On Thu, 13 Jun 2013 08:09:04 +0530, Jagan Teki wrote: > Hi, > > Thanks for sending this. > > Few comments. > 1. Please use subject prefix with version number this case it should > be "PATH v3" Plus if it is v3, then it should have patch history too. Amicalement, -- Albert. _

Re: [U-Boot] [PULL] u-boot-pxa/master

2013-06-13 Thread Albert ARIBAUD
Hi Marek, On Wed, 12 Jun 2013 22:57:56 +0200, Marek Vasut wrote: > The following changes since commit 58bb8f5f6138fa56875574a709f5af98c600c2a9: > > cosmetic: arm: fix comments in arch/arm/lib/crt0.S (2013-06-10 21:24:22 > +0200) > > are available in the git repository at: > > git://git.d

Re: [U-Boot] crash in usb_stor_get_info using pre-relocation address for ss->transport

2013-06-13 Thread Albert ARIBAUD
Hi Chris, On Thu, 13 Jun 2013 22:19:54 +1200, Chris Packham wrote: > Hi Albert, > > On 13/06/13 17:43, Albert ARIBAUD wrote: > > Hi Chris, > > > > On Thu, 13 Jun 2013 13:16:17 +1200, Chris Packham > > wrote: > > > >> On Thu, Jun 13, 2013 a

Re: [U-Boot] [PATCH] LaCie kirkwood boards: allow disk > 2TB

2013-06-13 Thread Albert ARIBAUD
Hi Frederic, On Mon, 10 Jun 2013 15:30:53 +0200, Frederic Leroy wrote: > From: Frédéric Leroy > > For big disk support, we need LBA addressing on 64 bits > --- > include/configs/lacie_kw.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/configs/lacie_kw.h b/include/configs/l

Re: [U-Boot] [PATCH] LaCie kirkwood boards: allow disk > 2TB

2013-06-13 Thread Albert ARIBAUD
Hi Frédéric, On Thu, 13 Jun 2013 15:03:49 +0200, Frédéric Leroy wrote: > Le 13/06/2013 13:33, Albert ARIBAUD a écrit : > > With gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) this patch causes > > the following warning for all boards: > > > > cmd_ide.c:992:4:

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

2013-06-13 Thread Albert ARIBAUD
up to 847e6693ccb529bf8346db62876f38f0c4e04ade: arm: pxa: config option for PXA270 turbo mode (2013-06-12 22:24:12 +0200) Albert ARIBAUD (2): Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'

Re: [U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-18 Thread Albert ARIBAUD
Hi Jeroen, On Sun, 16 Jun 2013 15:33:32 +0200, Jeroen Hofstee wrote: > Hello Albert, > > On 06/13/2013 08:54 PM, Jeroen Hofstee wrote: > > > binaries only use one type of relocation record, > R_ARM_RELATIVE., then optimizing relocation code > accordingly. > >>> > > > > fyi, I ha

Re: [U-Boot] please pull u-boot-samsung master

2013-06-18 Thread Albert ARIBAUD
Hi Minkyu, On Mon, 17 Jun 2013 13:16:20 +0530, Jagan Teki wrote: > On Mon, Jun 17, 2013 at 7:40 AM, Minkyu Kang wrote: > > Dear Albert, > > > > The following changes since commit d0a51373131c4ba565a2391d5ed78b87c406ce98: > > > > at91sam9260ek: move board id setup to config header (2013-05-12

[U-Boot] [LONG] Re: [PATCH v3 0/6] Optimize ARM relocation

2013-06-19 Thread Albert ARIBAUD
On Tue, 18 Jun 2013 16:54:57 +0200, Albert ARIBAUD wrote: > Hi Jeroen, > > On Sun, 16 Jun 2013 15:33:32 +0200, Jeroen Hofstee > wrote: > > > Hello Albert, > > > > On 06/13/2013 08:54 PM, Jeroen Hofstee wrote: > > > > > >

Re: [U-Boot] Merge Window close date

2013-06-19 Thread Albert ARIBAUD
Hi Masahiro, On Wed, 19 Jun 2013 10:54:27 +0900, Masahiro Yamada wrote: > How strict is the MW rule in U-Boot development? > > I can't say for sure because I'm quite new here, > but the development looks (at least to me) > to keep going regardless of the MW status. To sum up things (anyone cor

Re: [U-Boot] please pull u-boot-samsung master

2013-06-19 Thread Albert ARIBAUD
Hi Minkyu, On Mon, 17 Jun 2013 11:10:58 +0900, Minkyu Kang wrote: > Dear Albert, > > The following changes since commit d0a51373131c4ba565a2391d5ed78b87c406ce98: > > at91sam9260ek: move board id setup to config header (2013-05-12 16:49:14 > +0200) > > are available in the git repository at

Re: [U-Boot] please pull u-boot-samsung master

2013-06-19 Thread Albert ARIBAUD
Hi Jagan, On Wed, 19 Jun 2013 17:19:36 +0530, Jagan Teki wrote: > On Wed, Jun 19, 2013 at 6:09 AM, Minkyu Kang wrote: > > On 18/06/13 23:57, Albert ARIBAUD wrote: > >> Hi Minkyu, > >> > >> On Mon, 17 Jun 2013 13:16:20 +0530, Jagan Teki > >> wrot

Re: [U-Boot] please pull u-boot-samsung master

2013-06-19 Thread Albert ARIBAUD
Hi Minkyu, On Mon, 17 Jun 2013 11:10:58 +0900, Minkyu Kang wrote: > Dear Albert, > > The following changes since commit d0a51373131c4ba565a2391d5ed78b87c406ce98: > > at91sam9260ek: move board id setup to config header (2013-05-12 16:49:14 > +0200) > > are available in the git repository at

Re: [U-Boot] Please pull u-boot-ti/master

2013-06-19 Thread Albert ARIBAUD
Hi Tom, On Tue, 18 Jun 2013 11:25:59 -0400, Tom Rini wrote: > Hello, > > The following changes since commit 847e6693ccb529bf8346db62876f38f0c4e04ade: > > arm: pxa: config option for PXA270 turbo mode (2013-06-12 22:24:12 +0200) > > are available in the git repository at: > > git://git.de

Re: [U-Boot] Pull request for u-boot-marvell.git

2013-06-20 Thread Albert ARIBAUD
Hi Prafulla, On Wed, 19 Jun 2013 22:38:17 -0700, Prafulla Wadaskar wrote: > The following changes since commit c2543a21df335484fa86bd652b5564d0ca90d5f6: > Albert ARIBAUD (1): > Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' > > are

Re: [U-Boot] [PATCH v3 17/21] arm: Implement the 'fake' go command

2013-06-20 Thread Albert ARIBAUD
re ARM related patch in the series (1), I guess my contribution shall be... Acked-by: Albert ARIBAUD (1) patch 18/21 is Samsung and patch 19/21 touches on exynos5250-based boards; my ack is less adequate than that of, respectively, Minkyu as the Samsung custodian and the exynos5250-based boards

Re: [U-Boot] [PATCH 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-20 Thread Albert ARIBAUD
ulab CM-T35 board > (OMAP3530). > > Signed-off-by: Stefan Roese > Cc: Tom Rini > Cc: Albert ARIBAUD > --- > arch/arm/lib/crt0.S | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S > index a9657d1..b05f66a 100644 >

Re: [U-Boot] [PATCH 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-20 Thread Albert ARIBAUD
Hi Stefan, On Thu, 20 Jun 2013 19:01:22 +0200, Stefan Roese wrote: > Hi Albert, > > On 20.06.2013 18:42, Albert ARIBAUD wrote: > >> diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S > >> index a9657d1..b05f66a 100644 > >> --- a/arch/arm/lib/c

Re: [U-Boot] [PATCH 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-20 Thread Albert ARIBAUD
Hi Stefan, On Thu, 20 Jun 2013 20:28:01 +0200, Stefan Roese wrote: > Hi Albert, > > On 20.06.2013 19:51, Albert ARIBAUD wrote: > >>> The correct fix (read: the one I won't NAK) is thus to add a #else > >>> clause in the code above, in which r8 will be

Re: [U-Boot] [PATCH v2 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-21 Thread Albert ARIBAUD
zed > before s_init() is called. r8 now is only written in crt0.S. > > This error was detected on the SPL port for the Compulab CM-T35 board > (OMAP3530). > > Signed-off-by: Stefan Roese > Cc: Tom Rini > Cc: Albert ARIBAUD > --- > v2: > - Change handling/initializin

Re: [U-Boot] [PATCH v3 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-21 Thread Albert ARIBAUD
init should keep setting gd -- sorry for missing this so far, maybe Tom can fix the message while applying? Otherwise: Acked-by: Albert ARIBAUD Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 1/3] arm: spl: Fix SPL booting for OMAP3

2013-06-21 Thread Albert ARIBAUD
zed > before s_init() is called. r8 now is only written in crt0.S. > > This error was detected on the SPL port for the Compulab CM-T35 board > (OMAP3530). > > Signed-off-by: Stefan Roese > Cc: Tom Rini > Acked-by: Albert ARIBAUD > --- > v4: > - Corrected commit te

Re: [U-Boot] [PATCH v3 0/6] Optimize ARM relocation

2013-06-21 Thread Albert ARIBAUD
On Tue, 11 Jun 2013 14:17:29 +0200, Albert ARIBAUD wrote: > This series optimizes relocation by ensuring ARM > binaries only use one type of relocation record, > R_ARM_RELATIVE., then optimizing relocation code > accordingly. > > 1. A Makefile rule is added that chec

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

2013-06-21 Thread Albert ARIBAUD
fifo Albert ARIBAUD (8): Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' arm: ensure u-boot only uses relative relocations remove all references to .dynsym arm:

Re: [U-Boot] [PATCH 2/2] pxa: fix memory coherency problem after relocation

2013-06-21 Thread Albert ARIBAUD
Hi Marek, On Sat, 22 Jun 2013 04:29:56 +0200, Marek Vasut wrote: > Albert, do you want me to pick these or will you? Pick them and PR me. > Best regards, > Marek Vasut Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://list

Re: [U-Boot] [PATCH] OpenRD: relocate environment to 640kB

2013-06-22 Thread Albert ARIBAUD
On Tue, 11 Jun 2013 12:00:19 +0200, Albert ARIBAUD wrote: > Hi Sascha, > > On Mon, 27 May 2013 11:42:26 +0200, Sascha Silbe > wrote: > > > U-Boot has become slightly larger than where the environment sector > > was previously located. Saving the environ

Re: [U-Boot] [PATCH] arm: omap5_uevm: Correct the console sys prompt for 5432

2013-06-22 Thread Albert ARIBAUD
Hi Tom, On Tue, 11 Jun 2013 11:53:42 -0400, Tom Rini wrote: > On Thu, Jun 06, 2013 at 04:30:38PM -0500, Dan Murphy wrote: > > > Correct the console sys prompt to display the correct processor > > and the corrent board > > > > Signed-off-by: Dan Murphy > > Reported-by: Lubomir Popov > > Revi

[U-Boot] [RFC] interrupt handling

2013-06-22 Thread Albert ARIBAUD
Hello all, >From time to time there is discussion about the need for proper interrupt support in U-Boot. Right now, the only thing left in the source code which remotely looks like interrupt support is a few code sections compiled conditionally under CONFIG_USE_IRQ, and it does not constitute a g

Re: [U-Boot] [PATCH] Fix block device accesses beyond 2TiB

2013-06-22 Thread Albert ARIBAUD
On Mon, 17 Jun 2013 22:26:00 +0200, Marek Vasut wrote: > Hello Sascha, > > > With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, > > which is required to represent block numbers for storage devices that > > exceed 2TiB (the block size usually is 512B), e.g. recent hard drives. > >

Re: [U-Boot] [PATCH] Fix block device accesses beyond 2TiB

2013-06-22 Thread Albert ARIBAUD
Hi Frédéric, On Sat, 22 Jun 2013 14:29:26 +0200, Frédéric Leroy wrote: > Hello Albert, Sascha, Marek > > Le 22/06/2013 12:07, Albert ARIBAUD a écrit : > > > Quick review looks OK. > > > > > > Best regards, > > > Marek Vasut > > > > A

Re: [U-Boot] [PULL] u-boot-pxa/master

2013-06-22 Thread Albert ARIBAUD
Hi Marek, On Sat, 22 Jun 2013 15:26:21 +0200, Marek Vasut wrote: > The following changes since commit fbf87b1823dd5ebc2a384711ea2c677543019ece: > > arm: optimize relocate_code routine (2013-06-21 23:05:50 +0200) > > are available in the git repository at: > > git://git.denx.de/u-boot-pxa.

Re: [U-Boot] [PULL] u-boot-pxa/master

2013-06-22 Thread Albert ARIBAUD
Hi Mike, On Sat, 22 Jun 2013 10:42:27 -0700, Mike Dunn wrote: > On 06/22/2013 09:57 AM, Albert ARIBAUD wrote: > > Hi Marek, > > > > On Sat, 22 Jun 2013 15:26:21 +0200, Marek Vasut wrote: > > > >> The following changes since commit > >

Re: [U-Boot] [PATCH] board/bsc913x: Add config flag for bootdelay

2013-06-23 Thread Albert ARIBAUD
Hi Harninder, On Mon, 17 Jun 2013 17:18:32 +0530, Harninder Rai wrote: > Keep the value of CONFIG_BOOTDELAY as -1 to disable autoboot > > Signed-off-by: Harninder Rai > --- > include/configs/BSC9131RDB.h |1 + > include/configs/BSC9132QDS.h |1 + > 2 files changed, 2 insertions(+), 0

Re: [U-Boot] [PATCH v5 02/14] net: ftgmac100: add MMU/D-cache support

2013-06-23 Thread Albert ARIBAUD
xplanation of the whys and hows of the patch itself, and put any additional info after the commit message separator "---" below or, if using patman, in the cover letter. > Signed-off-by: Kuo-Jung Su > CC: Albert ARIBAUD > CC: Joe Hershberger &

Re: [U-Boot] [PATCH v5 03/14] net: add Faraday FTMAC110 10/100Mbps ethernet support

2013-06-23 Thread Albert ARIBAUD
Hi Kuo-Jung, On Mon, 17 Jun 2013 20:06:53 +0800, Kuo-Jung Su wrote: > NOTE: > No matter if MMU/D-cache is on or off, this patch > always depends on previous patch: > > arm: dma_alloc_coherent: malloc() -> memalign(). > > Because the FTMAC110 expects the tx/rx descriptors > are always be aligne

Re: [U-Boot] [PATCH v5 12/14] arm: add Faraday specific boot command

2013-06-23 Thread Albert ARIBAUD
he long explanation should go in the cover letter and a single shorter paragraph should be given as commit message here. > Signed-off-by: Kuo-Jung Su > CC: Albert Aribaud > --- Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 0/8] Provide a mechanism to avoid using #ifdef everywhere

2013-06-23 Thread Albert ARIBAUD
Hi Simon, On Mon, 17 Jun 2013 07:44:52 -0700, Simon Glass wrote: > Note that a config_drop.h file is added - this defines all the CONFIGs > which are not used in any board config file. Without this, autoconf cannot > define the macros for this CONFIGs. > > Compile time for main.c does not seem

Re: [U-Boot] [PULL] u-boot-pxa/master

2013-06-23 Thread Albert ARIBAUD
Hi Marek, > > FYI, I am using the ARM cross-toolchain available in my Ubuntu 13.04. > > For some reason, I feel the linaro ones were always stuffed with experimental > and semi-broken stuff :-( Maybe they were; all I can say is, the Ubuntu/Linaro toolchain never failed me in any way. > Best re

Re: [U-Boot] [PATCH v5 03/14] net: add Faraday FTMAC110 10/100Mbps ethernet support

2013-06-23 Thread Albert ARIBAUD
Hi Tom, On Sun, 23 Jun 2013 07:09:49 -0400, Tom Rini wrote: > On Sun, Jun 23, 2013 at 09:18:11AM +0200, Albert ARIBAUD wrote: > > Hi Kuo-Jung, > > > > On Mon, 17 Jun 2013 20:06:53 +0800, Kuo-Jung Su > > wrote: > > > > > NOTE: > > >

  1   2   3   4   5   6   7   8   9   10   >