[U-Boot] [PATCH V2 0/5] Add EXT filesystem support to SPL

2014-10-15 Thread Guillaume GARDET
support EXT in SPL, otherwise the MLO (SPL) may be too big to fit in SRAM. * I tested it succesfully on a Pandaboard (rev. A3) and on a Beagleboard xM (rev. B). Signed-off-by: Guillaume GARDET Cc: Tom Rini Regards, Guillaume --- Guillaume GARDET (5): Rename some defines containing FAT in

Re: [U-Boot] Upstream uboot and Arndale 5250 support

2014-10-08 Thread Guillaume Gardet
Le 08/10/2014 12:16, Paolo Pisati a écrit : that's weird, because i don't have bootz: are you using a patched u-boot? i'm using the default arndale_defconfig. anyhow, can i have your full working config? i'm starting to feel i'm chasing ghosts here. I used this patch for -rc2 (which wil

[U-Boot] [PATCH V2] ORIGEN: Enhance origen config to be more flexible on boot.

2014-10-08 Thread Guillaume GARDET
V2: rebased on latest GIT version V1: This patch enhances the boot of origen board by adding support to ext2, bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc: Minkyu Kang --- include

Re: [U-Boot] Upstream uboot and Arndale 5250 support

2014-10-08 Thread Guillaume Gardet
and yes, i already tried moving stuff around but it didn't fix it: what's the working config with your board? u-boot version? On Tue, Oct 7, 2014 at 4:34 PM, Guillaume Gardet wrote: Hi, Le 07/10/2014 14:58, Paolo Pisati a écrit : Hi, i've been trying to update the u-boot

Re: [U-Boot] Upstream uboot and Arndale 5250 support

2014-10-07 Thread Guillaume Gardet
Hi, Le 07/10/2014 14:58, Paolo Pisati a écrit : Hi, i've been trying to update the u-boot on my board (sd booting), from the Linaro one (2012.10) to a v2014.X, but so far had no luck: make arndale_config export CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- make ... dd if=arndale-bl1.bin of=/de

Re: [U-Boot] [PATCH 0/5] Add EXT filesystem support to SPL

2014-09-30 Thread Guillaume Gardet
Le 30/09/2014 15:33, Tom Rini a écrit : On Mon, Sep 29, 2014 at 08:39:54AM +0200, Guillaume Gardet wrote: Hi, Just a ping on this patch set which affects various part of u-boot. Any comments ? I like the concept and will look harder for the next merge window, thanks! Ok, thanks for the

Re: [U-Boot] [PATCH] ARNDALE: Enhance arndale config to be more flexible on boot.

2014-09-29 Thread Guillaume Gardet
Hi Ian, Le 29/09/2014 12:27, Ian Campbell a écrit : Hi Guillaume, On Mon, 2014-09-29 at 08:36 +0200, Guillaume Gardet wrote: I missed this before. You might be interested in http://lists.denx.de/pipermail/u-boot/2014-September/189939.html http://lists.denx.de/pipermail/u-boot/2014-September

Re: [U-Boot] [PATCH 0/5] Add EXT filesystem support to SPL

2014-09-28 Thread Guillaume Gardet
Hi, Just a ping on this patch set which affects various part of u-boot. Any comments ? Guillaume Le 19/09/2014 10:47, Guillaume GARDET a écrit : Hi, This patch set adds EXT filesystem support to SPL and enables it for OMAP4 boards. Build is succesful on all omap4 and omap5 boards. Note

Re: [U-Boot] [PATCH] ARNDALE: Enhance arndale config to be more flexible on boot.

2014-09-28 Thread Guillaume Gardet
Ping. Guillaume Le 19/09/2014 15:31, Guillaume GARDET a écrit : This patch enhances the boot of arndale board by adding support to bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc: Minkyu

Re: [U-Boot] [PATCH] ORIGEN: Enhance origen config to be more flexible on boot.

2014-09-28 Thread Guillaume Gardet
Ping. Guillaume Le 19/09/2014 15:32, Guillaume GARDET a écrit : This patch enhances the boot of origen board by adding support to ext2, bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc

[U-Boot] [PATCH] ORIGEN: Enhance origen config to be more flexible on boot.

2014-09-19 Thread Guillaume GARDET
This patch enhances the boot of origen board by adding support to ext2, bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc: Minkyu Kang --- include/configs/origen.h | 35

[U-Boot] [PATCH] ORIGEN: Enhance origen config to be more flexible on boot.

2014-09-19 Thread Guillaume GARDET
This patch enhances the boot of origen board by adding support to ext2, bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc: Minkyu Kang --- include/configs/origen.h | 35

[U-Boot] [PATCH] ARNDALE: Enhance arndale config to be more flexible on boot.

2014-09-19 Thread Guillaume GARDET
This patch enhances the boot of arndale board by adding support to bootz, initrd, bootenv loading and boot script. It still keeps the previous mmc load command if boot script fails. Signed-off-by: Guillaume GARDET Cc: Minkyu Kang --- include/configs/arndale.h | 38

[U-Boot] [PATCH 4/5] spl: do not hang in spl_register_fat_device but return error value. It allows to use both CONFIG_SPL_FAT_SUPPORT and CONFIG_SPL_EXT_SUPPORT.

2014-09-19 Thread Guillaume GARDET
Do not hang in spl_register_fat_device but return an error value. It allows to use both CONFIG_SPL_FAT_SUPPORT and CONFIG_SPL_EXT_SUPPORT. If FAT load fails, then EXT load is tried. Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas

[U-Boot] [PATCH 3/5] doc: Update documentation according to the EXT SPL support patch set

2014-09-19 Thread Guillaume GARDET
Update documentation according to the EXT SPL support patch set. Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas Bießmann --- README | 17 ++--- doc/README.SPL | 1 + 2 files changed, 11 insertions(+), 7

[U-Boot] [PATCH 5/5] TI:OMAP4: enable EXT support in SPL for OMAP4 boards

2014-09-19 Thread Guillaume GARDET
Enable EXT support in SPL for OMAP4 boards. Build tested for duovero, omap4_sdp4430 and omap4_panda. Run time tested on omap4_panda. Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas Bießmann --- include/configs

[U-Boot] [PATCH 2/5] spl: Add EXT support to SPL

2014-09-19 Thread Guillaume GARDET
Add EXT filesystem support to SPL. Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas Bießmann --- common/spl/Makefile | 1 + common/spl/spl_ext.c | 138 +++ common/spl/spl_mmc.c

[U-Boot] [PATCH 0/5] Add EXT filesystem support to SPL

2014-09-19 Thread Guillaume GARDET
too big to fit in SRAM. I tested it succesfully on a Pandaboard (rev. A3) and on a Beagleboard xM (rev. B). Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas Bießmann Regards, Guillaume --- Guillaume GARDET (5): Rename some

[U-Boot] [PATCH 1/5] Rename some defines containing FAT in their name to be filesystem generic MMCSD_MODE_FAT => MMCSD_MODE_FS CONFIG_SPL_FAT_LOAD_ARGS_NAME => CONFIG_SPL_FS_LOAD_ARGS_NAME CONFIG_SPL_

2014-09-19 Thread Guillaume GARDET
PARTITION => CONFIG_SYS_MMC_SD_FS_BOOT_PARTITION Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Stefano Babic Cc: Tom Rini Cc: Michal Simek Cc: Andreas Bießmann --- arch/arm/cpu/arm1136/mx35/generic.c | 2 +- arch/arm/cpu/armv7/omap-common/boot-common.c | 4 ++-- arch/arm/cpu/armv7/o

Re: [U-Boot] [PATCH] am335x_evm: Add boot script support to am335x_evm

2014-09-17 Thread Guillaume Gardet
Ping. Guillaume Le 11/09/2014 09:23, Guillaume GARDET a écrit : This patch adds boot script support to am335x_evm Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/am335x_evm.h | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff

Re: [U-Boot] [PATCH] OMAP4: Use generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage'.

2014-09-17 Thread Guillaume Gardet
Ping. Le 05/09/2014 15:32, Guillaume GARDET a écrit : This patch uses generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage' for OMAP4 boards. This a

[U-Boot] [PATCH] imx: nitrogen6x: Make use of both uSD and SD slots to load script or kernel on Sabrelite board

2014-09-11 Thread Guillaume GARDET
Sabrelite board has two solts: 0 is SD3 (bottom) slot and 1 is uSD4 (top) slot. This patch makes use of both slots instead of only one. Signed-off-by: Guillaume GARDET Cc: Stefano Babic Cc: Eric Nelson --- include/configs/nitrogen6x.h | 25 ++--- 1 file changed, 14

[U-Boot] [PATCH] am335x_evm: Add boot script support to am335x_evm

2014-09-11 Thread Guillaume GARDET
This patch adds boot script support to am335x_evm Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/am335x_evm.h | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index

Re: [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent

2014-09-09 Thread Guillaume Gardet
Ping. Guillaume Le 01/09/2014 20:27, Eric Nelson a écrit : Hi all, On 08/31/2014 07:24 PM, Fabio Estevam wrote: On Tue, Aug 26, 2014 at 7:05 AM, Guillaume GARDET wrote: nitrogen6x.h file defines CONFIG_CMD_FS_GENERIC, so we are able to use generic 'load' command instead of &#x

[U-Boot] [PATCH] OMAP4: Use generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage'.

2014-09-05 Thread Guillaume GARDET
This patch uses generic 'load' command instead of 'fatload' for 'loadbootscript' and 'loadbootenv' as already done for 'loadimage' and 'loaduimage' for OMAP4 boards. This allows to use EXT partition instead of FAT, while

Re: [U-Boot] [PATCH] omap3_beagle: Add boot script support to omap3 beagle board

2014-09-02 Thread Guillaume Gardet
Ping. Guillaume Le 26/08/2014 10:48, Guillaume GARDET a écrit : This patch adds boot script support to omap3 beagle board. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/omap3_beagle.h | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a

[U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent

2014-08-26 Thread Guillaume GARDET
nitrogen6x.h file defines CONFIG_CMD_FS_GENERIC, so we are able to use generic 'load' command instead of 'fatload'. It allows to use ext filesystem and keep compatibilty with fat filesystem. Signed-off-by: Guillaume GARDET Cc: Stefano Babic --- include/configs/nitrogen6x.

[U-Boot] [PATCH] omap3_beagle: Add boot script support to omap3 beagle board

2014-08-26 Thread Guillaume GARDET
This patch adds boot script support to omap3 beagle board. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/omap3_beagle.h | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index

[U-Boot] [RFC] Add EXT filesystem support to SPL

2014-08-21 Thread Guillaume Gardet
Hi, I have prepared a patch to add EXT filesystem support to SPL, but I have some questions to make a good patch. Currently, we have : MMCSD_MODE_FAT for FAT boot. Should we add MMCSD_MODE_EXT or just rename it to MMCSD_MODE_FS (or something else) to be filesystem generic? Then, some vars are

[U-Boot] [RFC] Replace {fat, ext2}load by load in default env settings

2014-08-21 Thread Guillaume Gardet
Hi, I would like to replace 'fatload' and 'ext2load' commands by 'load' command in default env settings such as loadbootscript, loaduimage, etc. for all boards. That way, the load commands are independent from the filesystem used. Is there any objection? If everyone is ok, I could submit a pa

Re: [U-Boot] is u-boot config arndale working?

2014-02-10 Thread Guillaume Gardet
Le 10/02/2014 13:17, Mj Embd a écrit : > On 2/10/14, Guillaume Gardet wrote: >> Hi, >> >> >> Le 10/02/2014 10:22, Mj Embd a écrit : >>> Hi, >>> >>> Compiled Head and flashed u-boot.bin for arndale config. No display on >>> terminal

Re: [U-Boot] is u-boot config arndale working?

2014-02-10 Thread Guillaume Gardet
Hi, Le 10/02/2014 10:22, Mj Embd a écrit : > Hi, > > Compiled Head and flashed u-boot.bin for arndale config. No display on > terminal in uboot. > Switched to linaro git (u-boot-linaro-stable.git) and u-boot log is showing > up. > > Something wrong? > You need to copy BL1 image, arndale-spl.bin

[U-Boot] u-boot 2014.01 snow (chromebook ARM) status?

2014-02-06 Thread Guillaume Gardet
Hi, I am trying to get u-boot snow (2014.01) running on a chromebook ARM (chainloaded u-boot). It seems to be running because if I enter the 'reset' command, then it reboots. But the problem is I only have a black screen, a white flash and again the black screen. Is it expected that LCD stay

<    1   2   3