Re: [PATCH v3] rockchip: rv1108: Convert to OF_UPSTREAM

2024-04-24 Thread Otavio Salvador
Reviewed-by: Otavio Salvador Tested-by: Otavio Salvador Em qua., 24 de abr. de 2024 às 11:18, Fabio Estevam escreveu: > Instead of using the local rv1108 devicetree copies from U-Boot, > let's convert the rv1108 boards to OF_UPSTREAM so that the upstream kernel > devicetrees ca

Re: [regression] 2023.01 breaks u-boot-initial-env for aarch64

2023-01-07 Thread Otavio Salvador
Thanks! Em sáb., 7 de jan. de 2023 às 10:44, Fabio Estevam escreveu: > Hi Otavio, > > On Sat, Jan 7, 2023 at 10:22 AM Otavio Salvador > wrote: > > > I didn't enable it explicitly. > > I enable LTO in this commit: > > https://sour

Re: [regression] 2023.01 breaks u-boot-initial-env for aarch64

2023-01-07 Thread Otavio Salvador
Hello Sean, Em sex., 6 de jan. de 2023 às 22:59, Sean Anderson escreveu: > On 1/6/23 19:44, Otavio Salvador wrote: > > The very same works just fine with 2022.10 it works. I didn't investigate > > more yet. > > > > Do you have LTO enabled? > I didn't enable it e

[regression] 2023.01 breaks u-boot-initial-env for aarch64

2023-01-06 Thread Otavio Salvador
ent' - it does not exist: file format not recognized | sed: can't read u-boot-initial-env: No such file or directory The very same works just fine with 2022.10 it works. I didn't investigate more yet. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brh

Re: [PATCH] patman: Support absolute and ~user-relative alias files

2022-01-13 Thread Otavio Salvador
l' > > > > Seen when git-config is like: > > > > $ git config sendemail.aliasesfile > > ~/.git-email > > > > Signed-off-by: Brian Norris > > --- > > > > tools/patman/gitutil.py | 11 --- > > 1 file changed, 8 insertions(+), 3 deleti

[PATCH] patman: expand user home when looking for the alias file

2022-01-04 Thread Otavio Salvador
This allows the use of git aliases files relative to the user home, without using the full path to the file. Signed-off-by: Otavio Salvador --- tools/patman/gitutil.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/patman/gitutil.py b/tools/patman/gitutil.py

Re: [PATCH] ARM: dts: imx6ull: Use the correct name for ESAI_TX0

2021-11-18 Thread Otavio Salvador
Hello Fabio, Em qui., 18 de nov. de 2021 às 08:36, Fabio Estevam escreveu: > On Thu, Nov 18, 2021 at 8:33 AM Otavio Salvador > wrote: > > > > Em qui., 18 de nov. de 2021 às 07:06, Fabio Estevam > > escreveu: > > > According to the i.MX6ULL Reference Manu

Re: [PATCH] ARM: dts: imx6ull: Use the correct name for ESAI_TX0

2021-11-18 Thread Otavio Salvador
e of the old name in the three? if so, a patch converting it would be good. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750

Re: Using USB Mass Storage on AM335X

2020-10-31 Thread Otavio Salvador
Hello all, Em qui., 29 de out. de 2020 às 19:19, Otavio Salvador escreveu: ... > Does anyone know why selecting CONFIG_CMD_USB_MASS_STORAGE=y causes > the board to not boot anymore? We found it; setting CONFIG_SYS_MALLOC_F_LEN=0x2000 it works :-) -- Otavio Sa

Re: Using USB Mass Storage on AM335X

2020-10-29 Thread Otavio Salvador
Em qui., 29 de out. de 2020 às 19:46, Tom Rini escreveu: > On Thu, Oct 29, 2020 at 07:19:47PM -0300, Otavio Salvador wrote: > > Does anyone know why selecting CONFIG_CMD_USB_MASS_STORAGE=y causes > > the board to not boot anymore? > > Have you otherwise confirmed that yo

Using USB Mass Storage on AM335X

2020-10-29 Thread Otavio Salvador
e to mount the eMMC on the host. The problem I am getting is that when I select CONFIG_CMD_USB_MASS_STORAGE=y the board no longer boots. Does anyone know why selecting CONFIG_CMD_USB_MASS_STORAGE=y causes the board to not boot anymore? Thanks for your help -- Otavi

Re: RPi3: serial console

2020-10-12 Thread Otavio Salvador
u_serial_setbrg() we divide a clock rate by the baudrate. > divider = plat->clock / (baudrate * 8); > > If we do not have the correct clock rate, the actual baudrate will be wrong. It seems if you have the dtb files next to the firmware, the firmware loads it and the baudrate seems ri

Re: [PATCH 1/2] spl: Avoid printing boot device if silent console is enabled

2020-09-30 Thread Otavio Salvador
Em qua., 30 de set. de 2020 às 02:23, Stefan Roese escreveu: > On 30.09.20 04:14, Otavio Salvador wrote: > Wouldn't it be better, to add this CONFIG_SILENT_CONSOLE check to > the console / printf function itself instead of adding it to all > callers? I believe in critical err

[PATCH 2/2] spl: Add SPL_SERIAL as requirement for SDP_USB_SDP

2020-09-29 Thread Otavio Salvador
The USB SDP protocol require the SPL serial support to allow the build to succeed. Signed-off-by: Otavio Salvador --- common/spl/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index af8255a8d6a..20c5c4af3c3 100644 --- a/common/spl/Kconfig

[PATCH 1/2] spl: Avoid printing boot device if silent console is enabled

2020-09-29 Thread Otavio Salvador
This avoid emitting message if silent console is in use, otherwise it pollutes the output and user desires a quiet console Signed-off-by: Otavio Salvador --- common/spl/spl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/spl/spl.c b/common/spl/spl.c index

[PATCH] spl: Add SPL_SERIAL as requirement for SDP_USB_SDP

2020-09-05 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- common/spl/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index af8255a8d6..20c5c4af3c 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1237,6 +1237,7 @@ endchoice config SPL_USB_SDP_SUPPORT

[PATCH] spl: Avoid printing boot device if silent console is enabled

2020-09-03 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- common/spl/spl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/spl/spl.c b/common/spl/spl.c index 4840d1d367..63c48fbf33 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -552,7 +552,9 @@ static int boot_from_devices

[PATCH 2/2] mx6ul_14x14_evk: Avoid overlap of environment over U-Boot proper

2020-06-09 Thread Otavio Salvador
We need to change the environment offset to avoid corrupting the U-Boot binary when saving it. Signed-off-by: Otavio Salvador --- Changes in v2: - rework commit log configs/mx6ul_14x14_evk_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs

[PATCH 1/2] mx6ul_14x14_evk: Enable SPL USB and SDP support

2020-06-09 Thread Otavio Salvador
This fixes the boot from USB loader, which is critical to easy the manufacture process. Signed-off-by: Otavio Salvador --- (no changes since v1) configs/mx6ul_14x14_evk_defconfig | 11 +++ 1 file changed, 11 insertions(+) diff --git a/configs/mx6ul_14x14_evk_defconfig b/configs

[PATCH 3/3] mx6ul_14x14_evk: Change environment offset to overlap with U-Boot

2020-06-09 Thread Otavio Salvador
We need to change the environment offset to avoid corrupting the U-Boot binary when saving it. Signed-off-by: Otavio Salvador --- configs/mx6ul_14x14_evk_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/mx6ul_14x14_evk_defconfig b/configs

[PATCH 2/3] mx6ul_14x14_evk: Enable eMMC boot support

2020-06-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- configs/mx6ul_14x14_evk_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/mx6ul_14x14_evk_defconfig b/configs/mx6ul_14x14_evk_defconfig index cad766443c2..a2cb3215d44 100644 --- a/configs/mx6ul_14x14_evk_defconfig +++ b/configs

[PATCH 1/3] mx6ul_14x14_evk: Enable SPL USB and SDP support

2020-06-09 Thread Otavio Salvador
This fixes the boot from USB loader, which is critical to easy the manufacture process. Signed-off-by: Otavio Salvador --- configs/mx6ul_14x14_evk_defconfig | 11 +++ 1 file changed, 11 insertions(+) diff --git a/configs/mx6ul_14x14_evk_defconfig b/configs/mx6ul_14x14_evk_defconfig

Re: [PATCH 3/3] rockchip: evb-rv1108: enable board early init

2020-04-13 Thread Otavio Salvador
On Sun, Apr 12, 2020 at 10:39 PM Kever Yang wrote: > > Enable board early init callback to init board specific hardware. > > Signed-off-by: Kever Yang Please send the same patch to elgin-rv1108 config. -- Otavio Salvador O.S. Systems http://www.ossy

Re: [PATCH 0/4] Fixes for rv1108 and rv1108-elgin-r1

2020-03-26 Thread Otavio Salvador
Hello, On Fri, Mar 13, 2020 at 2:42 PM Otavio Salvador wrote: > Those are fixes we've been using and we'd like to upstream. > > They are fixes and would be great to have them included on 2020.04 > release. > > > Otavio Salvador (4): > ARM: dts: Activate pullups in th

Re: [PATCH 3/4] elgin-rv1108: Avoid adc_channel_single_shot error【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2020-03-26 Thread Otavio Salvador
Ping? On Tue, Mar 17, 2020 at 10:52 PM Kever Yang wrote: > > > On 2020/3/14 上午1:42, Otavio Salvador wrote: > > Currently the following error message is seen during boot: > > > > U-Boot 2020.01-08751-g55759ae141 (Mar 09 2020 - 14:44:52 -0300) > > > > Mode

Re: [PATCH 4/4] rv1108: Fix boot regression

2020-03-26 Thread Otavio Salvador
Ping? On Tue, Mar 17, 2020 at 10:52 PM Kever Yang wrote: > > > On 2020/3/14 上午1:42, Otavio Salvador wrote: > > Since commit 79030a486128 ("rockchip: Add Single boot image > > (with binman, pad_cat)") the following boot regression is seen: > > > > U-Bo

Re: [PATCH 2/4] elgin-rv1108: Use rk_board_late_init() for GPIO settings【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2020-03-26 Thread Otavio Salvador
Ping? On Tue, Mar 17, 2020 at 10:52 PM Kever Yang wrote: > > > On 2020/3/14 上午1:42, Otavio Salvador wrote: > > Since commit 8e9a8d0d0c8c ("rockchip: elgin-rv1108: use board_early_init_f > > for per-boar init") the function that configure the board GPIO

Re: [PATCH 1/4] ARM: dts: Activate pullups in the console pins on rv1108-elgin-r1【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2020-03-26 Thread Otavio Salvador
Ping? On Tue, Mar 17, 2020 at 10:50 PM Kever Yang wrote: > > Hi Otavio, > > > On 2020/3/14 上午1:42, Otavio Salvador wrote: > > In order to make the console pins more robust to noise, activate > > the pullups and increase its drive strength. > > > > Signed-

[PATCH 4/4] rv1108: Fix boot regression

2020-03-13 Thread Otavio Salvador
l 6000b927 (err=-22) This happens because the above commit missed to include the "rockchip-u-boot.dtsi" for rv1108, so include this file like it done for other Rockchip SoC dtsi's. Fixes: 79030a486128 ("rockchip: Add Single boot image (with binman, pad_cat)") Signed-off-by: Otavi

[PATCH 3/4] elgin-rv1108: Avoid adc_channel_single_shot error

2020-03-13 Thread Otavio Salvador
CONFIG_ROCKCHIP_BOOT_MODE_REG=0 to avoid such error. Signed-off-by: Otavio Salvador --- configs/elgin-rv1108_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/elgin-rv1108_defconfig b/configs/elgin-rv1108_defconfig index 80d53f3c10..b6682994f5 100644 --- a/configs/elgin

[PATCH 2/4] elgin-rv1108: Use rk_board_late_init() for GPIO settings

2020-03-13 Thread Otavio Salvador
so change it to rk_board_late_init() and also select CONFIG_BOARD_LATE_INIT=y to fix the regression. Signed-off-by: Otavio Salvador Signed-off-by: Fabio Berton --- board/elgin/elgin_rv1108/elgin_rv1108.c | 2 +- configs/elgin-rv1108_defconfig | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)

[PATCH 1/4] ARM: dts: Activate pullups in the console pins on rv1108-elgin-r1

2020-03-13 Thread Otavio Salvador
In order to make the console pins more robust to noise, activate the pullups and increase its drive strength. Signed-off-by: Otavio Salvador --- arch/arm/dts/rv1108-elgin-r1.dts | 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/dts/rv1108-elgin-r1.dts b/arch/arm/dts

[PATCH 0/4] Fixes for rv1108 and rv1108-elgin-r1

2020-03-13 Thread Otavio Salvador
Those are fixes we've been using and we'd like to upstream. They are fixes and would be great to have them included on 2020.04 release. Otavio Salvador (4): ARM: dts: Activate pullups in the console pins on rv1108-elgin-r1 elgin-rv1108: Use rk_board_late_init() for GPIO settings elgin

Re: [PATCH 1/2] rockchip: elgin-rv1108: Use syscon API to get grf base

2020-02-20 Thread Otavio Salvador
lgin_rv1108.c | 7 +++ > > 1 file changed, 3 insertions(+), 4 deletions(-) > > Reviewed-by: Simon Glass Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750

Re: [PATCH] pico-imx7d: Convert to DM_ETH

2020-01-05 Thread Otavio Salvador
ation : > > > > -CONFIG_USB_ETHER=y > > -CONFIG_USB_ETH_CDC=y > > -CONFIG_USBNET_HOST_ADDR="de:ad:be:af:00:00" > > > > If you agree I send V2 > > If the board maintainer (Otavio) agrees it, I am fine. I agree. However, do this as a commit prior to this one so if someone ever wants to revert it is easy. Also, explain the reasoning on the commit log. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750

Re: [PATCH] pico-imx7d: Convert to DM_ETH

2019-12-08 Thread Otavio Salvador
On Sun, Dec 8, 2019 at 2:03 PM Joris Offouga wrote: > > Signed-off-by: Joris Offouga Reviewed-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +

Re: [U-Boot] [PATCH] pico-imx7d: Remove specific code for fitImage

2019-10-13 Thread Otavio Salvador
On Sun, Oct 13, 2019 at 9:30 AM Joris Offouga wrote: > > This implementation is a specific utilisation with CONFIG_FIT. > This feature use script for boot. With distrobootcmd is possible > to load script. > > Signed-off-by: Joris Offouga Reviewed-by: Otavio Salvador -

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx u-boot-imx-20190923

2019-09-23 Thread Otavio Salvador
Hello Tom, On Mon, Sep 23, 2019 at 5:04 PM Otavio Salvador wrote: > On Mon, Sep 23, 2019 at 4:29 PM Tom Rini wrote: > > > We are now getting to move more things to DM model and we hope to do > > > more changes for next release. > > > > OK. But we

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx u-boot-imx-20190923

2019-09-23 Thread Otavio Salvador
On Mon, Sep 23, 2019 at 4:29 PM Tom Rini wrote: > On Mon, Sep 23, 2019 at 03:48:29PM -0300, Otavio Salvador wrote: > > On Mon, Sep 23, 2019 at 9:57 AM Joris Offouga > > wrote: > > > Hi Tom and Stefano > > > > > > I send patch series for fix build for p

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx u-boot-imx-20190923

2019-09-23 Thread Otavio Salvador
ll merged. We are now getting to move more things to DM model and we hope to do more changes for next release. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347)

Re: [U-Boot] [PATCH 1/2] pico-imx7d: fix splash logo drawing

2019-09-23 Thread Otavio Salvador
On Mon, Sep 23, 2019 at 5:59 AM Joris Offouga wrote: > > Signed-off-by: Joris Offouga Reviewed-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobi

Re: [U-Boot] [PATCH 2/2] pico-imx7d: Remove dead code for dm_video

2019-09-23 Thread Otavio Salvador
On Mon, Sep 23, 2019 at 5:59 AM Joris Offouga wrote: > > Since convert dm_video, unused code introduced, so remove this > > Signed-off-by: Joris Offouga Reviewed-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.br

Re: [U-Boot] [PATCH v2 6/8] pico-imx6: Add Ethernet support

2019-09-21 Thread Otavio Salvador
Hello Anatolij, On Fri, Sep 20, 2019 at 5:58 PM Anatolij Gustschin wrote: > On Fri, 20 Sep 2019 16:47:28 -0300 > Otavio Salvador ota...@ossystems.com.br wrote: > ... > > +/* Ethernet Configuration */ > > +#define CONFIG_FEC_MXC > > +#define CONFIG_MI

[U-Boot] [PATCH v2 00/08] Please pull https://github.com/OSSystems/u-boot for-imx

2019-09-20 Thread Otavio Salvador
pico-imx6: Add initial support pico-imx6: Add Ethernet support pico-imx6: Add splashscreen support pico-imx6: Add Falcon mode Otavio Salvador (2): configs: Sync all baseboard specific pico-imx7d pico-imx6: Fix bootmenu handling arch/arm/dts/Makefile

[U-Boot] [PATCH v2 4/8] pico-imx6: Add initial support

2019-09-20 Thread Otavio Salvador
From: Fabio Estevam Add the initial support for the pico-imx6 variants. DDR initialization is based on the TechNexion's U-Boot code. Signed-off-by: Fabio Estevam Signed-off-by: Fabio Berton Signed-off-by: Otavio Salvador --- arch/arm/dts/Makefile | 2 + arch/arm/dts

[U-Boot] [PATCH v2 6/8] pico-imx6: Add Ethernet support

2019-09-20 Thread Otavio Salvador
From: Fabio Estevam Add Ethernet support. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- board/technexion/pico-imx6/pico-imx6.c | 74 ++ include/configs/pico-imx6.h| 10 2 files changed, 84 insertions(+) diff --git a/board/technexion

[U-Boot] [PATCH v2 8/8] pico-imx6: Add Falcon mode

2019-09-20 Thread Otavio Salvador
From: Fabio Estevam Add Falcon mode support, which allows the SPL to load and jump to the Linux kernel directly, without the need of loading U-Boot proper. CONFIG_SPL_OS_BOOT=y needs to be passed in the defconfig in order to use Falcon mode. Signed-off-by: Fabio Estevam Signed-off-by: Otavio

[U-Boot] [PATCH v2 7/8] pico-imx6: Add splashscreen support

2019-09-20 Thread Otavio Salvador
From: Fabio Estevam Add splashscreen support. Tested with the parallel FT5x06-WVGA panel. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- board/technexion/pico-imx6/pico-imx6.c | 210 + configs/pico-imx6_defconfig| 2 + include/configs

[U-Boot] [PATCH v2 5/8] pico-imx6: Fix bootmenu handling

2019-09-20 Thread Otavio Salvador
We should use a common script to allow booting the U-Boot console as fallback so we ended using a 'default_boot' and 'base_boot' environment scripts to accomplish that. Signed-off-by: Fabio Berton Signed-off-by: Otavio Salvador --- configs/pico-imx6_defconfig | 2 +- include/configs/pico-imx6

[U-Boot] [PATCH v2 2/8] mx53loco: Fix U-Boot corruption after saving the environment

2019-09-20 Thread Otavio Salvador
this same problem in the future, use CONFIG_BOARD_SIZE_LIMIT, which will detect the overlap in build-time. CONFIG_BOARD_SIZE_LIMIT does not accept math expressions, so declare CONFIG_ENV_OFFSET with its direct value instead. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- inclu

[U-Boot] [PATCH v2 3/8] mx6: clock: Allow enable_ipu_clock() to be built for SPL code

2019-09-20 Thread Otavio Salvador
From: Fabio Estevam Allow enable_ipu_clock() to be built for SPL code. This is done in preparation for configuring the NoC registers on i.MX6QP in SPL. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- arch/arm/mach-imx/mx6/clock.c | 32 1 file

[U-Boot] [PATCH v2 1/8] configs: Sync all baseboard specific pico-imx7d

2019-09-20 Thread Otavio Salvador
This syncs all baseboard specific defconfig using the pico-imx7d_defconfig as base. It changes: - pico-dwarf-imx7d_defconfig - pico-hobbit-imx7d_defconfig - pico-nymph-imx7d_defconfig - pico-pi-imx7d_defconfig Signed-off-by: Otavio Salvador --- configs/pico-dwarf-imx7d_defconfig | 3

Re: [U-Boot] [PATCH] Revert "mx6sabresd: convert to DM_VIDEO"

2019-09-17 Thread Otavio Salvador
> This reverts commit f3592ceac9810b34801772b6d335d8f7cff4c287. > > Signed-off-by: Fabio Estevam Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854

[U-Boot] Please pull https://github.com/OSSystems/u-boot for-imx

2019-09-16 Thread Otavio Salvador
to 9a86959e71d2fd09ceba9f5ce09bc7be21466a75: mx53loco: Fix U-Boot corruption after saving the environment (2019-09-16 18:53:06 -0300) Fabio Estevam (1): mx53loco: Fix U-Boot corruption after saving the environment Otavio Salvador (1): configs: Sync

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx u-boot-imx-20190916

2019-09-16 Thread Otavio Salvador
do not have dm_usb, this > is done for pi and hobbit I added your patches, Joris, and also made the DM_USB fix. Stefano, look at: git pull https://github.com/OSSystems/u-boot/ for-imx It should do the trick ;-) -- Otavio Salvador O.S. Systems http://www.ossyste

Re: [U-Boot] [PATCH 1/5] pico-imx6ul: Add DWARF baseboard support

2019-09-14 Thread Otavio Salvador
On Sat, Sep 14, 2019 at 8:22 AM Stefano Babic wrote: ... > Otavio, I am also fine if you send a follow-up patch to fix it - your > decision. Anatolij sent a fix already. I acked it and copied you. -- Otavio Salvador O.S. Systems http://www.ossystems.

Re: [U-Boot] [PATCH] imx: fix pico-dwarf-imx6ul and pico-dwarf-imx7d build issues

2019-09-14 Thread Otavio Salvador
Signed-off-by: Anatolij Gustschin > Cc: Otavio Salvador Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750 __

Re: [U-Boot] Please pull pico-imx7d-2019.10-1 from https://github.com/OSSystems/u-boot

2019-09-13 Thread Otavio Salvador
On Thu, Sep 12, 2019 at 6:27 PM Joris Offouga wrote: > Just put CONFIG_DM_VIDEO in the defconfig Please adjust your PR and let me know; so I test it here. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55

Re: [U-Boot] Please pull pico-imx7d-2019.10-1 from https://github.com/OSSystems/u-boot

2019-09-12 Thread Otavio Salvador
eed update. Please check and let me know when done so I make a new PR. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9

[U-Boot] Please pull pico-imx7d-2019.10-1 from https://github.com/OSSystems/u-boot

2019-09-12 Thread Otavio Salvador
-imx7d_defconfig Fabio Estevam (3): pico-imx7d: Add instructions for booting in Falcon mode pico-imx7d: Provide a way to escape the Falcon mode logos: Add the TechNexion's logo Otavio Salvador (2): pico-imx7d: Add DWARF baseboard support pico-imx7d: Add NYMPH

[U-Boot] Please pull pico-imx6ul-2019.10-1 from https://github.com/OSSystems/u-boot

2019-09-12 Thread Otavio Salvador
-imx6ul: Increase the CONFIG_ENV_OFFSET size pico-imx6ul: Add LCD support pico-imx6ul: Update the Falcon mode instructions pico-imx6ul: Provide a way to escape the Falcon mode Otavio Salvador (1): pico-imx6ul: Add DWARF baseboard support board/technexion/pico-imx6ul/README

[U-Boot] [PATCH] logos: Add the TechNexion's logo

2019-09-12 Thread Otavio Salvador
From: Fabio Estevam Add the TechNexion's logo from their internal U-Boot tree. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- tools/logos/technexion.bmp | Bin 0 -> 22390 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tools/logos/technexion.

[U-Boot] [PATCH 4/5] pico-imx7d: Add instructions for booting in Falcon mode

2019-09-12 Thread Otavio Salvador
From: Fabio Estevam Improve the README by adding instructions on how to boot using Falcon mode, which allows the SPL to load the kernel directly, without using U-Boot proper. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- board/technexion/pico-imx7d/README | 91

[U-Boot] [PATCH 5/5] pico-imx7d: Provide a way to escape the Falcon mode

2019-09-12 Thread Otavio Salvador
-by: Otavio Salvador --- board/technexion/pico-imx7d/spl.c | 4 1 file changed, 4 insertions(+) diff --git a/board/technexion/pico-imx7d/spl.c b/board/technexion/pico-imx7d/spl.c index c55a35d864..8955622b81 100644 --- a/board/technexion/pico-imx7d/spl.c +++ b/board/technexion/pico-imx7d

[U-Boot] [PATCH 2/5] pico-imx7d: Add DWARF baseboard support

2019-09-12 Thread Otavio Salvador
This add the boot menu option for the DWARF baseboard as well as a specific config file for users which wish to use it as a pre-defined board. Signed-off-by: Otavio Salvador --- configs/pico-dwarf-imx7d_defconfig | 68 ++ include/configs/pico-imx7d.h | 4

[U-Boot] [PATCH 3/5] pico-imx7d: Add NYMPH baseboard support

2019-09-12 Thread Otavio Salvador
This add the boot menu option for the NYMPH baseboard as well as a specific config file for users which wish to use it as a pre-defined board. Signed-off-by: Otavio Salvador --- configs/pico-nymph-imx7d_defconfig | 68 ++ include/configs/pico-imx7d.h | 4

[U-Boot] [PATCH 1/5] pico-imx7d: Sync pico-hobbit-imx7d_defconfig

2019-09-12 Thread Otavio Salvador
From: Fabio Berton Update pico-hobbit-imx7d_defconfig using pico-imx7d_defconfig as base to fix device tree file generation. With this all pico-imx7d are creating u-boot-dtb.img files. Signed-off-by: Fabio Berton Signed-off-by: Otavio Salvador --- configs/pico-hobbit-imx7d_defconfig | 2

[U-Boot] [PATCH 5/5] pico-imx6ul: Provide a way to escape the Falcon mode

2019-09-12 Thread Otavio Salvador
-by: Otavio Salvador --- board/technexion/pico-imx6ul/spl.c | 4 1 file changed, 4 insertions(+) diff --git a/board/technexion/pico-imx6ul/spl.c b/board/technexion/pico-imx6ul/spl.c index 284aa40db6..7f520beeb0 100644 --- a/board/technexion/pico-imx6ul/spl.c +++ b/board/technexion/pico-imx6ul

[U-Boot] [PATCH 3/5] pico-imx6ul: Add LCD support

2019-09-12 Thread Otavio Salvador
From: Fabio Estevam Add support for the VXT VL050-8048NT-C01 panel connected through the 24 bit parallel LCDIF interface. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- board/technexion/pico-imx6ul/pico-imx6ul.c | 55 +- configs/pico-dwarf

[U-Boot] [PATCH 4/5] pico-imx6ul: Update the Falcon mode instructions

2019-09-12 Thread Otavio Salvador
From: Fabio Estevam Sync the Falcon mode instructions with the ones fro pico-imx7d. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- board/technexion/pico-imx6ul/README | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/board/technexion/pico-imx6ul

[U-Boot] [PATCH 2/5] pico-imx6ul: Increase the CONFIG_ENV_OFFSET size

2019-09-12 Thread Otavio Salvador
this same problem in the future, use CONFIG_BOARD_SIZE_LIMIT, which will detect the overlap in build-time. CONFIG_BOARD_SIZE_LIMIT does not accept math expressions, so declare CONFIG_ENV_OFFSET with its direct value instead. Signed-off-by: Fabio Estevam Signed-off-by: Fabio Berton Signed-off-by: Otavi

[U-Boot] [PATCH 1/5] pico-imx6ul: Add DWARF baseboard support

2019-09-12 Thread Otavio Salvador
This add the boot menu option for the DWARF baseboard as well as a specific config file for users which wish to use it as a pre-defined board. Signed-off-by: Otavio Salvador --- configs/pico-dwarf-imx6ul_defconfig | 64 + include/configs/pico-imx6ul.h | 6

[U-Boot] [PATCH 1/2] logos: Add the TechNexion's logo

2019-05-08 Thread Otavio Salvador
From: Fabio Estevam Add the TechNexion's logo from their internal U-Boot tree. Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador --- tools/logos/technexion.bmp | Bin 0 -> 22390 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tools/logos/technexion.

[U-Boot] [PATCH 2/2] pico-imx6ul: Add DWARF baseboard support

2019-05-08 Thread Otavio Salvador
This add the boot menu option for the DWARF baseboard as well as a specific config file for users which wish to use it as a pre-defined board. Signed-off-by: Otavio Salvador --- configs/pico-dwarf-imx6ul_defconfig | 66 + include/configs/pico-imx6ul.h | 6

[U-Boot] i.MX initial PR

2019-04-10 Thread Otavio Salvador
Hello Stefano, We have a bunch of queued patches on imx/next tree and as we are working on porting boards over DM it'd be good to get all current work soon merged on master so we can conduct tests and find regressions early. When are you intending to send it? -- Otavio Salvador

[U-Boot] [PATCH] pico-imx6ul: Add DWARF baseboard support

2019-04-07 Thread Otavio Salvador
This add the boot menu option for the DWARF baseboard as well as a specific config file for users which wish to use it as a pre-defined board. Signed-off-by: Otavio Salvador --- configs/pico-dwarf-imx6ul_defconfig | 64 + include/configs/pico-imx6ul.h | 6

Re: [U-Boot] [PATCH v2] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-04-04 Thread Otavio Salvador
On Wed, Apr 3, 2019 at 9:22 PM Fabio Estevam wrote: > On Wed, Apr 3, 2019 at 3:45 PM Otavio Salvador > wrote: > > On Fri, Mar 22, 2019 at 2:53 PM Otavio Salvador > > wrote: > > > The default U-Boot environment expects the use of eMMC user > > > partition. To

Re: [U-Boot] [PATCH v2 0/6] pico-imx7d: Add support for BL33 case

2019-04-04 Thread Otavio Salvador
ed in u-boot FDT blob > for kernel/initramfs FIT signature verification. What's your comments? The FIT image might have them all, no? It would allow a single binary to work on all baseboards, giving a very nice user experience. -- Otavio Salvador O.

Re: [U-Boot] [PATCH 1/5] Arm: imx7d-pico: Import all Linux device tree for Pico i.MX7D SOM

2019-04-03 Thread Otavio Salvador
x v5.1-rc1. > > > > Signed-off-by: Joris Offouga > > Tested-by: Fabio Estevam The dtb files are not included on the Makefile, so if we try to build the image it fails. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://co

Re: [U-Boot] [PATCH v2] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-04-03 Thread Otavio Salvador
Stefano, On Fri, Mar 22, 2019 at 2:53 PM Otavio Salvador wrote: > The default U-Boot environment expects the use of eMMC user > partition. To ensure we are using the proper eMMC partition for boot > we need to run the `mmc partconf` command. > > This patch updates the READ

Re: [U-Boot] [PATCH 1/2] tools/imx8m_image.sh: remove bashism

2019-04-01 Thread Otavio Salvador
system shell to build U-Boot is no sense. We cannot ensure compatibility, for sure, but using bashism makes it worse and non POSIX compatible. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mob

Re: [U-Boot] [PATCH 1/2] tools/imx8m_image.sh: remove bashism

2019-04-01 Thread Otavio Salvador
patch does fix it. We should get this merged for 2019.04 release. Please Stefano, consider this for release (be it through your branch for directly by Tom). Best Regards, -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code

Re: [U-Boot] [PATCH v2 6/6] pico-imx7d: Correct uart clock root

2019-03-28 Thread Otavio Salvador
use it as default? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750 ___ U-Boot mailing list U-Boot@l

Re: [U-Boot] [PATCH v2 0/6] pico-imx7d: Add support for BL33 case

2019-03-28 Thread Otavio Salvador
On Thu, Mar 28, 2019 at 5:30 AM Jun Nie wrote: > > Add configuration to boot U-boot as BL33 case. The boot flow > is ATF -> OPTEE -> U-boot. Could you add a README explaining how to use / test it? -- Otavio Salvador O.S. Systems http://www.o

Re: [U-Boot] [PATCH 5/5] pico-imx7d: Add bl33 config

2019-03-27 Thread Otavio Salvador
existing SPL infrastructure. Also, I'd say u-boot is not need, for some use cases ... so DDR and direct OS loading can be done using SPL. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55

Re: [U-Boot] [PATCH 5/5] pico-imx7d: Add bl33 config

2019-03-27 Thread Otavio Salvador
rong direction. > > > > We have SPL support that can handle both 512MB and 1GB variants. > > > > Why do we need to to go back to DCD table? > > For ATF -> OPTEE -> U-BOOT case, we cannot run SPL. Why? the SPL might need to be changed but it should be doable

Re: [U-Boot] [PATCH 5/5] pico-imx7d: Add bl33 config

2019-03-27 Thread Otavio Salvador
On Wed, Mar 27, 2019 at 1:06 AM Jun Nie wrote: > Otavio Salvador 于2019年3月26日周二 下午8:23写道: > > > > On Tue, Mar 26, 2019 at 6:23 AM Jun Nie wrote: > > > > > > Add default configuration to run u-boot as BL33 in the boot flow case > > > of AT

Re: [U-Boot] [PATCH 5/5] pico-imx7d: Add bl33 config

2019-03-26 Thread Otavio Salvador
the base board to use and it provides more flexibility to test. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750 ___ U-Boo

Re: [U-Boot] [PATCH 0/5] Convert Pico i.MX7 to DM

2019-03-25 Thread Otavio Salvador
pico-imx7d: defconfig Enable DM gpio pinctrl and pinctrl_imx7 > pico-imx7d: Convert DM MMC > pico-imx7d: Increase u-boot size for dfu request Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossys

Re: [U-Boot] [PATCH v2] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-03-22 Thread Otavio Salvador
On Fri, Mar 22, 2019 at 3:17 PM Fabio Estevam wrote: > On Fri, Mar 22, 2019 at 3:09 PM Otavio Salvador > wrote: > > > 2. The '=> mmc partconf 0 0 0 0' command needs to be issued after the > > > last dfu command, not before like you did in this patch. > > >

Re: [U-Boot] [PATCH v2] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-03-22 Thread Otavio Salvador
Hello Fabio, Adding Marek as he is one of USB gods. On Fri, Mar 22, 2019 at 3:01 PM Fabio Estevam wrote: > On Fri, Mar 22, 2019 at 2:53 PM Otavio Salvador > wrote: > So you need to fix the README in two points: > > 1. The command "=> dfu 0 mmc 0" must be i

Re: [U-Boot] [PATCH] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-03-22 Thread Otavio Salvador
On Fri, Mar 22, 2019 at 2:40 PM Fabio Estevam wrote: > On Fri, Mar 22, 2019 at 9:28 AM Otavio Salvador > wrote: > > 2. Flashing U-Boot into the eMMC > > > > -Run the DFU agent so we can flash the new images using dfu-util tool: > > +The default U-Boot

[U-Boot] [PATCH v2] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-03-22 Thread Otavio Salvador
The default U-Boot environment expects the use of eMMC user partition. To ensure we are using the proper eMMC partition for boot we need to run the `mmc partconf` command. This patch updates the README instructions to avoid users to follow misleading instructions. Signed-off-by: Otavio Salvador

[U-Boot] [PATCH] pico-imx6ul, pico-imx7d: Explain how to use eMMC user partition

2019-03-22 Thread Otavio Salvador
The default U-Boot environment expects the use of eMMC user partition. To ensure we are using the proper eMMC partition for boot we need to run the `mmc partconf` command. This patch updates the README instructions to avoid users to follow misleading instructions. Signed-off-by: Otavio Salvador

Re: [U-Boot] [PATCH] Revert "pico-imx7d: Add LCD support"

2019-03-11 Thread Otavio Salvador
> I agreed, reverting it for now and finish the convertion so we can look at it later. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750 _

Re: [U-Boot] [PATCH 1/6] pico-imx6ul: Import dts files from kernel

2019-03-07 Thread Otavio Salvador
Hello Stefano, On Thu, Feb 14, 2019 at 10:43 AM Otavio Salvador wrote: > On Thu, Feb 14, 2019 at 10:02 AM Fabio Estevam wrote: > > Import the device tree files from kernel 5.0-rc6 in preparation > > for driver model conversion. > > > > Signed-off-by: Fabio Estevam &g

Re: [U-Boot] [PATCH 4/6] pico-imx6ul: Convert to CONFIG_DM_GPIO

2019-02-14 Thread Otavio Salvador
On Thu, Feb 14, 2019 at 10:04 AM Fabio Estevam wrote: > > Convert to CONFIG_DM_GPIO. > > Also, DM GPIO requires gpio_request() to be called explicitly before > doing any gpio operation, so do as requested. > > Signed-off-by: Fabio Estevam Acked-by: Otavio Salvador

Re: [U-Boot] [PATCH 5/6] pico-imx6ul: Convert to DM_PMIC

2019-02-14 Thread Otavio Salvador
ed-off-by: Fabio Estevam Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9 9981-7854 Mobile: +1 (347) 903-9750 ___ U-

Re: [U-Boot] [PATCH 6/6] pico-imx6ul: README: Adjust the binary name after DM conversion

2019-02-14 Thread Otavio Salvador
On Thu, Feb 14, 2019 at 10:04 AM Fabio Estevam wrote: > > After the conversion to DM the U-Boot binary is called u-boot-dtb.imx, > so fix the README file accordingly. > > Signed-off-by: Fabio Estevam Acked-by: Otavio Salvador -- Otavio Salvador

Re: [U-Boot] [PATCH 3/6] pico-imx6ul: Convert to DM MMC

2019-02-14 Thread Otavio Salvador
On Thu, Feb 14, 2019 at 10:03 AM Fabio Estevam wrote: > > Select CONFIG_DM_MMC=y in order to support MMC driver model. > > This allows the MMC board related code to be removed. > > Signed-off-by: Fabio Estevam Acked-by: Otavio Salvador -- Otavio Salvador

  1   2   3   4   5   6   7   8   9   10   >