RE: U-Boot 2023.10 does not boot from uSD on RPi4

2023-10-13 Thread Guillaume Gardet
Hi, Indeed, your patch [2] fixes my boot problem. Thanks, Guillaume From: Simon Glass Sent: Tuesday, October 10, 2023 4:58 PM To: Guillaume Gardet Cc: Peter Robinson ; Matthias Brugger ; Ivan Ivanov ; U-Boot Mailing List Subject: Re: U-Boot 2023.10 does not boot from uSD on RPi4 Hi, On

U-Boot 2023.10 does not boot from uSD on RPi4

2023-10-10 Thread Guillaume Gardet
Hi, U-Boot 2023.10 does not boot from uSD on RPi4. This has been found on openSUSE Tumbleweed. The only diff we need is: -CONFIG_OF_EMBED=y +CONFIG_OF_BOARD=y To use firmware provided Device Tree. But that should not affect the mmc behavior too much, I think. 'git bisect' points to:

RE: U-Boot 2023.10 does not boot from uSD on RPi4

2023-10-10 Thread Guillaume Gardet
> -Original Message- > From: Peter Robinson > Sent: Tuesday, October 10, 2023 12:22 PM > To: Guillaume Gardet > Cc: mbrug...@suse.com; Ivan Ivanov ; Simon Glass > ; u-boot@lists.denx.de > Subject: Re: U-Boot 2023.10 does not boot from uSD on RPi4 > > On Tu

SPL too large for firefly-rk3288 and tinker-rk3288 since 2020.01

2020-01-10 Thread Guillaume Gardet
Hi, since 2020.01, SPL image is too large for rk3288 boards (at least firefly-rk3288 and tinker-rk3288), because I get respectively: [ 356s] + ./tools/mkimage -n rk3288 -d spl/u-boot-spl.bin -T rksd u-boot-spl.rksd [ 356s] Error: SPL image is too large (size 0x9800 than 0x8000) And: [ 3

RE: SPL too large for firefly-rk3288 and tinker-rk3288 since 2020.01

2020-01-10 Thread Guillaume Gardet
> -Original Message- > From: Jagan Teki > Sent: 10 January 2020 11:13 > To: Guillaume Gardet > Cc: Simon Glass ; Lin Huang ; u- > b...@lists.denx.de > Subject: Re: SPL too large for firefly-rk3288 and tinker-rk3288 since 2020.01 > > On Fri, Jan 10, 2020

RE: SPL too large for firefly-rk3288 and tinker-rk3288 since 2020.01

2020-01-10 Thread Guillaume Gardet
> -Original Message- > From: Jagan Teki > Sent: 10 January 2020 11:37 > To: Guillaume Gardet > Cc: Simon Glass ; Lin Huang ; u- > b...@lists.denx.de; nd > Subject: Re: SPL too large for firefly-rk3288 and tinker-rk3288 since 2020.01 > > On Fri, Jan 10

EHCI timeout on Beagleboard xM with u-boot 2020.01

2020-01-15 Thread Guillaume Gardet
Hi, Booting u-boot 2020.01 on a Beagleboard xM, I get the following EHCI timeouts: ** USB0: USB EHCI 1.00 scanning bus 0 for devices... EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x8

[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

[U-Boot] Git clone using http or rsync broken

2015-02-20 Thread Guillaume Gardet
Hi, git clone using http or rsync protocols does not work whereas it is given here: http://www.denx.de/wiki/view/DULG/UBootVersions "git clone http://git.denx.de/u-boot.git"; just hangs with: Cloning into 'u-boot'... And "git clone rsync://git.denx.de/u-boot.git" returns: Cloning into 'u-bo

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

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

[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

[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] [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] [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.

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] 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] 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] 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

[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

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

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

[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

[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 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 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 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] 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] 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

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

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 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-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-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] 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] 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

[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
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 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

[U-Boot] [PATCH V2 1/5] Rename some defines containing FAT in their name to be filesystem generic

2014-10-15 Thread Guillaume GARDET
PARTITION => CONFIG_SYS_MMC_SD_FS_BOOT_PARTITION Signed-off-by: Guillaume GARDET Cc: Tom Rini --- arch/arm/cpu/arm1136/mx35/generic.c | 2 +- arch/arm/cpu/armv7/omap-common/boot-common.c | 4 ++-- arch/arm/cpu/armv7/omap3/board.c | 2 +- arch/arm/cpu/armv7/zynq/spl.c| 2 +- arch/

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

2014-10-15 Thread Guillaume GARDET
Update documentation according to the EXT SPL support patch set. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- README | 17 ++--- doc/README.SPL | 1 + 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README b/README index 46def00..43b460c 100644 --- a

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

2014-10-15 Thread Guillaume GARDET
Add EXT filesystem support to SPL. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- common/spl/Makefile | 1 + common/spl/spl_ext.c | 138 +++ common/spl/spl_mmc.c | 18 ++- fs/Makefile | 1 + include/spl.h| 4 ++ 5

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

2014-10-15 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: Tom Rini --- include/configs/ti_omap4_common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs

[U-Boot] [PATCH V2 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-10-15 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: Tom Rini --- common/spl/spl_fat.c | 2 +- 1 file changed, 1 insertion(+), 1

[U-Boot] problem with eMMC boot on arndale board

2014-10-17 Thread Guillaume Gardet
Hi, does anyone has tried eMMC boot on Arndale board? I copied BL1, SPL and u-boot to eMMC, like I do on SD card but it does not boot at all. Note that once booted on SD card, I get some errors while accessing eMMC. "mmc dev 0" returns: dwmci_send_cmd: DATA ERROR! switch to pa

Re: [U-Boot] [U-Boot,V2,2/5] spl: Add EXT support to SPL

2014-10-29 Thread Guillaume Gardet
Le 27/10/2014 23:22, Tom Rini a écrit : On Wed, Oct 15, 2014 at 05:53:12PM +0200, Guillaume GARDET wrote: Add EXT filesystem support to SPL. Signed-off-by: Guillaume GARDET Cc: Tom Rini With the following change: diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index 7342268

[U-Boot] [PATCH 0/2] Enable raw initrd support for TI boards

2014-11-03 Thread Guillaume GARDET
Enable raw initrd support for TI boards. Build tested with ./MAKEALL -v ti Runtime tested on a Pandaboard (rev. A3) and on a Beagleboard xM (rev. B). --- Guillaume GARDET (2): ARM: TI: Enable raw initrd support ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file

[U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h

2014-11-03 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/omap3_igep00x0.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/omap3_igep00x0.h b/include/configs/omap3_igep00x0.h index 006c9a9..b2b3750 100644 --- a/include/configs/omap3_igep00x0.h +++ b/include/configs

[U-Boot] [PATCH 1/2] ARM: TI: Enable raw initrd support

2014-11-03 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/ti_armv7_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index 85171db..7d07bcd 100644 --- a/include/configs/ti_armv7_common.h +++ b/include

[U-Boot] USB keyboard does not work on DWC2 controller (on Raspberry Pi B)

2015-08-18 Thread Guillaume Gardet
Hi Stephen, I want to add USB keyboard support to raspberry pi but I get the following error when I do 'usb start' with a keyboard plugged-in: unable to get device descriptor (error=-22) Ethernet chip and mass storage devices are found. I found this thread from February: http://lists.denx

[U-Boot] [PATCH] ARM: rpi: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support

2015-08-18 Thread Guillaume GARDET
Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support to set 'board_rev' and 'board_name' envs. Signed-off-by: Guillaume GARDET Cc: Stephen Warren --- board/raspberrypi/rpi/rpi.c | 6 ++ include/configs/rpi-common.h | 1 + 2 files changed, 7 insertions(+) diff --git a/b

Re: [U-Boot] [PATCH] ARM: rpi: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support

2015-08-21 Thread Guillaume Gardet
Le 19/08/2015 05:14, Stephen Warren a écrit : On 08/18/2015 08:03 AM, Guillaume GARDET wrote: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support to set 'board_rev' and 'board_name' envs. That states what the patch does rather than why its useful to do it. Can you expand o

[U-Boot] [PATCH V2] ARM: rpi: Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support

2015-08-25 Thread Guillaume GARDET
Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support and enable it to set 'board_rev' and 'board_name' envs. 'board_rev' can be used in scripts to determine what board we are running on and 'board_name' for pretty printing. Signed-off-by: Guillaume GARDET

Re: [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)

2015-07-27 Thread Guillaume Gardet
Hi, Le 24/07/2015 17:22, Ash Charles a écrit : On Fri, Jul 24, 2015 at 7:04 AM, Tom Rini wrote: Can you give us more details on the exact nature of the failure? Thanks! Oh sorry--that wasn't clear! The boards appear to get stuck in SPL before anything can be printed to the console. Basicall

Re: [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)

2015-07-28 Thread Guillaume Gardet
Le 28/07/2015 02:23, Ash Charles a écrit : On Mon, Jul 27, 2015 at 9:39 AM, Guillaume Gardet wrote: Which bump SPL size from 54*1024 to 64*1024 and moves SPL text base from 0x40200800 to 0x4020. Any reason for that? What happens if you use original values? What is the size of your MLO

Re: [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)

2015-07-28 Thread Guillaume Gardet
Le 24/07/2015 17:22, Ash Charles a écrit : On Fri, Jul 24, 2015 at 7:04 AM, Tom Rini wrote: Can you give us more details on the exact nature of the failure? Thanks! Oh sorry--that wasn't clear! The boards appear to get stuck in SPL before anything can be printed to the console. Basically,

Re: [U-Boot] [ANN] U-Boot v2015.10-rc3 released

2015-09-09 Thread Guillaume Gardet
Hi, Le 08/09/2015 02:19, Tom Rini a écrit : Hey all, I've pushed v2015.10-rc3 out to the repository and tarballs should exist soon. Would it be possible to push -rc3 tarball on FTP, please? -rc2 is missing too. Guillaume I think this looks reasonable overall and we're on pace for release

[U-Boot] [PATCH 2/2] odroid: Add boot script (boot.scr) support

2015-09-28 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 8 1 file changed, 8 insertions(+) diff --git a/include/configs/odroid.h b/include/configs/odroid.h index e45b00e..cc9f818 100644 --- a/include/configs/odroid.h +++ b/include

[U-Boot] [PATCH 0/2] Enhance Odroid board

2015-09-28 Thread Guillaume GARDET
sual. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- Guillaume GARDET (2): odroid: replace 'fatload' with 'load' to be able to use EXT* partitions odroid: Add boot script (boot.scr) support include/configs/odroid.h | 14 +++--- 1 fil

[U-Boot] [PATCH 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions

2015-09-28 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/odroid.h b/include/configs/odroid.h index 1afe04a..e45b00e 100644 --- a/include/configs/odroid.h +++ b

[U-Boot] [PATCH V2 0/2] Enhance Odroid board

2015-10-05 Thread Guillaume GARDET
sual. Changes in V2: * Expand commit messages * Better code consistency Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- Guillaume GARDET (2): odroid: replace 'fatload' with 'load' to be able to use EXT* partitions odroid: Add boot script (boot

[U-Boot] [PATCH V2 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions

2015-10-05 Thread Guillaume GARDET
Replace 'fatload' command by 'load', to be able to use EXT* partitions while keeping FAT partition compatibility. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deleti

[U-Boot] [PATCH V2 2/2] odroid: Add boot script (boot.scr) support

2015-10-05 Thread Guillaume GARDET
Add boot script (boot.scr) support. If no boot script are found, it boots as usual. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 9 + 1 file changed, 9 insertions(+) diff --git a/include/configs/odroid.h b/include/configs

Re: [U-Boot] [PATCH V2 2/2] odroid: Add boot script (boot.scr) support

2015-10-08 Thread Guillaume Gardet
Le 05/10/2015 11:13, Sjoerd Simons a écrit : On Mon, 2015-10-05 at 11:07 +0200, Guillaume GARDET wrote: Add boot script (boot.scr) support. If no boot script are found, it boots as usual. Instead of extending the specialized boot script, it would belovely to see the odroid board switch to

Re: [U-Boot] [PATCH V2 2/2] odroid: Add boot script (boot.scr) support

2015-10-09 Thread Guillaume Gardet
Le 09/10/2015 12:24, Przemyslaw Marczak a écrit : Hello Guillaume, On 10/05/2015 11:07 AM, Guillaume GARDET wrote: Add boot script (boot.scr) support. If no boot script are found, it boots as usual. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include

[U-Boot] [RFC] odroid DTB support

2015-10-09 Thread Guillaume Gardet
Hi Przemyslaw, I would like to add DTB support for odroid board to be able to boot upstream kernel easily. I see 2 ways to do it: * Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG support to set 'board_rev' and 'board_name' env vars. Then, you need a 'findfdt' script to check 'board_rev' and set fdt

[U-Boot] [PATCH V3 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions

2015-10-09 Thread Guillaume GARDET
Replace 'fatload' command by 'load', to be able to use EXT* partitions while keeping FAT partition compatibility. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deleti

[U-Boot] [PATCH V3 0/2] *Enhance Odroid board

2015-10-09 Thread Guillaume GARDET
hanges in V3: * Uses 'elif' version as requested by Przemyslaw Marczak Changes in V2: * Expand commit messages * Better code consistency Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- Guillaume GARDET (2): odroid: replace 'fatload' with 

[U-Boot] [PATCH V3 2/2] odroid: Add boot script (boot.scr) support

2015-10-09 Thread Guillaume GARDET
Add boot script (boot.scr) support. If no boot script are found, it boots as usual. Signed-off-by: Guillaume GARDET Cc: Przemyslaw Marczak Cc: Minkyu Kang --- include/configs/odroid.h | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/configs/odroid.h b

Re: [U-Boot] [RFC] odroid DTB support

2015-10-09 Thread Guillaume Gardet
Le 09/10/2015 14:23, Przemyslaw Marczak a écrit : Hello Guillaume, On 10/09/2015 02:11 PM, Guillaume Gardet wrote: Hi Przemyslaw, I would like to add DTB support for odroid board to be able to boot upstream kernel easily. I see 2 ways to do it: * Add CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG

[U-Boot] [PATCH] mx53loco: Use generic 'load' command instead of 'fatload'

2015-06-16 Thread Guillaume GARDET
This patch uses generic 'load' command instead of 'fatload' for 'loadbootscript', 'loadimage' and 'loadfdt' for mx53loco board. This allows to use EXT partition instead of FAT, while keeping FAT compatibility. Signed-off-by: Guillaume GARDET

[U-Boot] [PATCH 0/2] Enable EXT support in SPL for all TI armv7 boards

2015-06-16 Thread Guillaume GARDET
tch remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h. Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B). Compilation tested on TI armv7 boards and OMAP boards from other vendors. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- Guillaume GARDET

[U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)

2015-06-16 Thread Guillaume GARDET
Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B). Compilation tested on TI armv7 boards and OMAP boards from other vendors. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/ti_armv7_common.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/configs

[U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h

2015-06-16 Thread Guillaume GARDET
Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/configs/ti_omap4_common.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h index 1c93aab..b0f199e 100644 --- a/include/configs/ti_omap4_common.h +++ b/include

Re: [U-Boot] [PATCH] mx53loco: Use generic 'load' command instead of 'fatload'

2015-07-06 Thread Guillaume Gardet
Le 16/06/2015 13:51, Liu Jason a écrit : -Original Message- From: Guillaume GARDET [mailto:guillaume.gar...@free.fr] Sent: Tuesday, June 16, 2015 5:49 PM To: u-boot@lists.denx.de Cc: Guillaume GARDET; Liu Hui-R64343; Stefano Babic Subject: [U-Boot] [PATCH] mx53loco: Use generic '

Re: [U-Boot] [PATCH] mx53loco: Use generic 'load' command instead of 'fatload'

2015-07-06 Thread Guillaume Gardet
Le 06/07/2015 12:26, Stefano Babic a écrit : Hi Guillaume, On 06/07/2015 12:10, Guillaume Gardet wrote: Le 16/06/2015 13:51, Liu Jason a écrit : -Original Message- From: Guillaume GARDET [mailto:guillaume.gar...@free.fr] Sent: Tuesday, June 16, 2015 5:49 PM To: u-boot@lists.denx.de

Re: [U-Boot] Git clone using http or rsync broken

2015-02-23 Thread Guillaume Gardet
Le 21/02/2015 13:19, Nable a écrit : Hi! Rsync isn't mentioned here: http://git.denx.de/u-boot.git/ , this fact makes me think that rsync support isn't present. Ok. 2. "git clone http://git.denx.de/u-boot.git"; just hangs with: Cloning into 'u-boot'... U-Boot repo is very large, so it

[U-Boot] 2015.04-rc2 tarball is missing from FTP

2015-02-23 Thread Guillaume Gardet
Hi, 2015.04-rc2 tarball is missing from FTP. Could you add it, please? Guillaume ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-02-25 Thread Guillaume GARDET
Commit 2e82e9252695a612ab0cbf40fa0c7368515f6506 'Exynos: Clock: Cleanup soc_get_periph_rate' introduced a bug in I2C config. This patch makes cros_ec keyboard working again on Samsung Chromebook (snow). Signed-off-by: Guillaume GARDET Cc: Akshay Saraswat Cc: Minkyu Kang Cc: Joon

[U-Boot] checkarmreloc error for AArch64 (using vexpress_aemv8a_defconfig)

2015-02-26 Thread Guillaume Gardet
Hi, While building vexpress_aemv8a_defconfig, I get the following error: u-boot contains unexpected relocations: R_AARCH64_ABS64 R_AARCH64_RELATIVE Makefile:1258: recipe for target 'checkarmreloc' failed

[U-Boot] Bad colors on BMP display on LCD

2015-02-26 Thread Guillaume Gardet
Hi, I am trying to display a BMP image on a Samsung Chromebook (snow), but I get wrong colors. The image is displayed but colors are bad. I used my own image and images provided in tools/logos/ folder, thay are all ok on the Sabrelite board (HDMI output) but displayed in bad colors on the sams

Re: [U-Boot] Bad colors on BMP display on LCD

2015-03-03 Thread Guillaume Gardet
ng convert tool with the following option : "-depth 8 -colors 256 -compress none -alpha off". which u-boot framebuffer driver is used ? On snow config, this should be the exynos framebuffer driver. Guillaume best regards, HAnnes On 2015-02-26 17:52, Guillaume Gardet wrote:

Re: [U-Boot] [PATCH] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-03-10 Thread Guillaume Gardet
Le 28/02/2015 08:59, Minkyu Kang a écrit : Joonyoung, On 26/02/15 00:22, Guillaume GARDET wrote: Commit 2e82e9252695a612ab0cbf40fa0c7368515f6506 'Exynos: Clock: Cleanup soc_get_periph_rate' introduced a bug in I2C config. This patch makes cros_ec keyboard working again on Samsung

[U-Boot] [PATCH V2] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-03-11 Thread Guillaume GARDET
Commit 2e82e9252695a612ab0cbf40fa0c7368515f6506 'Exynos: Clock: Cleanup soc_get_periph_rate' introduced a bug in I2C config. This patch makes cros_ec keyboard working again on Samsung Chromebook (snow). Changes in V2: reorder lines as requested by Joonyoung Shim. Signed-off-by:

Re: [U-Boot] [PATCH V2] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-03-19 Thread Guillaume Gardet
Ping. Guillaume Le 11/03/2015 10:34, Guillaume GARDET a écrit : Commit 2e82e9252695a612ab0cbf40fa0c7368515f6506 'Exynos: Clock: Cleanup soc_get_periph_rate' introduced a bug in I2C config. This patch makes cros_ec keyboard working again on Samsung Chromebook (snow). Changes in V

Re: [U-Boot] [RFC] odroid DTB support

2015-10-12 Thread Guillaume Gardet
Hi, Le 12/10/2015 01:45, Tom Rini a écrit : On Fri, Oct 09, 2015 at 02:35:24PM +0200, Guillaume Gardet wrote: Le 09/10/2015 14:23, Przemyslaw Marczak a écrit : Hello Guillaume, On 10/09/2015 02:11 PM, Guillaume Gardet wrote: Hi Przemyslaw, I would like to add DTB support for odroid board

Re: [U-Boot] [RFC] odroid DTB support

2015-10-13 Thread Guillaume Gardet
Le 12/10/2015 16:24, Tom Rini a écrit : On Mon, Oct 12, 2015 at 10:54:04AM +0200, Guillaume Gardet wrote: Hi, Le 12/10/2015 01:45, Tom Rini a écrit : On Fri, Oct 09, 2015 at 02:35:24PM +0200, Guillaume Gardet wrote: Le 09/10/2015 14:23, Przemyslaw Marczak a écrit : Hello Guillaume, On

Re: [U-Boot] [RFC] odroid DTB support

2015-10-13 Thread Guillaume Gardet
Hi Przemyslaw, Tom, Le 13/10/2015 11:11, Przemyslaw Marczak a écrit : Hi Tom, Guillaume, On 10/13/2015 09:37 AM, Guillaume Gardet wrote: Le 12/10/2015 16:24, Tom Rini a écrit : On Mon, Oct 12, 2015 at 10:54:04AM +0200, Guillaume Gardet wrote: Hi, Le 12/10/2015 01:45, Tom Rini a écrit

[U-Boot] Re : Re: [PATCH] exynos: imply SYS_THUMB_BUILD

2018-12-03 Thread Guillaume GARDET
igger than the 512K load limit, with GCC8, without > > thumb mode. > > > > Acked-by: Lukasz Majewski > > > Signed-off-by: Guillaume GARDET > > > > Cc: Albert Aribaud > > Cc: Minkyu Kang > > Cc: Tom Rini > > --- > > arch/arm/Kco

[U-Boot] Re : Re: [PATCH] exynos: imply SYS_THUMB_BUILD

2018-12-03 Thread Guillaume GARDET
This is needed for and has been tested on Arndale board, as > > > > u-boot.bin is now bigger than the 512K load limit, with GCC8, > > > > without thumb mode. > > > > > > > > > > Acked-by: Lukasz Majewski > > > > > > >

Re: [U-Boot] [PATCH] omap3: beagle: Enable DM_MMC and BLK for u-boot only, not SPL

2018-12-17 Thread Guillaume Gardet
Le 21/11/2018 à 18:06, Tom Rini a écrit : On Wed, Nov 21, 2018 at 04:13:20PM +0100, Guillaume GARDET wrote: Also disable USB_STORAGE as it is not ready for the switch. Tested on a Beagleboard xM rev. B. Signed-off-by: Guillaume GARDET Cc: Tom Rini Cc: Simon Glass In the case of

[U-Boot] Problem with v2018-09-rc2 to boot EFI on Arndale board

2018-08-16 Thread Guillaume GARDET
Hi, While trying to boot Grub2/EFI on Arndale board, I got the following error: ** fdt_fixup_memory_banks: num banks 8 exceeds hardcoded limit 4. Recompile with higher MEMORY_BANKS_MAX? ERROR: arch-specific fdt fixup failed - m

[U-Boot] Clearfog fails to build with U-Boot v2018.07-rc1

2018-06-14 Thread guillaume . gardet
Hi Stefan, Clearfog config fails to build with U-Boot v2018.07-rc1, because SPL is too big: LD spl/u-boot-spl ld.bfd: SPL image too big make[1]: *** [scripts/Makefile.spl:347: spl/u-boot-spl] Error 1 make: *** [Makefile:1510: spl/u-boot-spl] Error 2 Guillaume

[U-Boot] Re : Re: Clearfog fails to build with U-Boot v2018.07-rc1

2018-06-14 Thread guillaume . gardet
- Stefan Roese a écrit : > Hi Guillaume, > > On 14.06.2018 14:19, guillaume.gar...@free.fr wrote: > > Clearfog config fails to build with U-Boot v2018.07-rc1, because SPL is too > > big: > > > > LD spl/u-boot-spl > >ld.bfd: SPL image too big > >make[1]: *** [scripts/Makef

[U-Boot] [PATCH] snow: set fdtfile

2018-06-14 Thread Guillaume GARDET
Needed to boot with EFI distro boot. Signed-off-by: Guillaume GARDET Cc: Akshay Saraswat Cc: Tom Rini --- include/configs/snow.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/snow.h b/include/configs/snow.h index 3b0db32ece..c546a5a6d0 100644 --- a/include/configs

[U-Boot] [PATCH] distro: add more efi dtb prefixes

2018-06-14 Thread Guillaume GARDET
As used on some distro, such as openSUSE. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/config_distro_bootcmd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index d672e8ebe6..ad4c7a78f1 100644

[U-Boot] Pine64 problems with GPT partitions

2018-06-26 Thread guillaume . gardet
Hi Andre, You are the maintainer of Pine64 in U-Boot, so I want to let you know that Pine64 has problems to access GPT partitions, whereas MBR partitions seem to be OK. There is a bug report from openSUSE here with additional informations: https://bugzilla.opensuse.org/show_bug.cgi?id=1098550

Re: [U-Boot] [PATCH 1/2] arm: timer: factor out FSL arch timer erratum workaround

2018-07-03 Thread Guillaume Gardet
Le 03/07/2018 à 01:08, Andreas Färber a écrit : Am 02.07.2018 um 10:01 schrieb Jagan Teki: On Wed, Jun 27, 2018 at 6:12 AM, Andre Przywara wrote: At the moment we have the workaround for the Freescale arch timer erratum A-008585 merged into the generic timer_read_counter() routine. Split tho

  1   2   3   >