Re: [U-Boot] [RFC] mmc: fsl_esdhc: Do not set high speed mode on MX25 and MX51

2017-10-18 Thread Otavio Salvador
nv > Saving Environment to MMC... > Writing to MMC(0)... failed > > Workaround this issue by not setting the mmc high speed mode flags even > if the HOSTCAPBLT register reports that the SD card can operate at > high speed. > > Tested on imx51evk and imx25pdk boards. &g

Re: [U-Boot] [PATCH] imx: mx6slevk: fix mmc breakage

2017-10-16 Thread Otavio Salvador
t; > Cc: Fabio Estevam <fabio.este...@nxp.com> Peng, Fabio's patches[1][2] fix those issues but your cleanup of board code should be sent on top of it. 1. https://patchwork.ozlabs.org/patch/825464/ 2. https://patchwork.ozlabs.org/patch/825039/ Please take a look at the above patches and co

Re: [U-Boot] [PATCH] mx7dsabresd: Remove CONFIG_DM_MMC to avoid regression

2017-10-11 Thread Otavio Salvador
understand your goal but I think we ought to focus on fixing the root cause of it instead of moving things back out of DM. I even think we could postpone a little the release until a fix is made but revert out from DM seems wrong. -- Otavio Salvador O.S. Systems http://www

Re: [U-Boot] [PATCH 3/4] imx: mx7: SPL support for i.MX7

2017-10-02 Thread Otavio Salvador
eclared (first use in this function) > > > In fact, ENET_125MHz is not definded anywhere in U-Boot. Could you > please check and fix this ? It is defined but now it is all upper case. Eric did rename it. -- Otavio Salvador

[U-Boot] [PATCH 2/2] mx25pdk: Remove duplicated define

2017-09-29 Thread Otavio Salvador
The CONFIG_SYS_MMC_ENV_DEV is duplicated, drop it. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/mx25pdk.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h index 57e2a6db36..bb100c40df 100644 --- a/i

[U-Boot] [PATCH 1/2] mx25pdk: Use generic filesystem commands

2017-09-29 Thread Otavio Salvador
This rework the board to use the generic filesystem commands instead of forcing the use of FAT for the boot files. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- configs/mx25pdk_defconfig | 5 +++-- include/configs/mx25pdk.h | 9 ++--- 2 files changed, 9 insertions

Re: [U-Boot] [OE-core] [PATCH] u-boot: Upgrade to 2017.09

2017-09-18 Thread Otavio Salvador
Em 18 de set de 2017 12:20 PM, "Philip Balister" escreveu: On 09/18/2017 02:39 AM, Martin Jansa wrote: > On Mon, Sep 18, 2017 at 10:31:05AM +0200, Marek Vasut wrote: >> On 09/18/2017 09:54 AM, Martin Jansa wrote: >>> u-boot-fw-utils-cross is broken for at least a year, if it

Re: [U-Boot] [PATCH] u-boot: Upgrade to 2017.09

2017-09-13 Thread Otavio Salvador
Marek, On Wed, Sep 13, 2017 at 5:20 PM, Marek Vasut <marek.va...@gmail.com> wrote: > On 09/13/2017 10:11 PM, Otavio Salvador wrote: >> On Wed, Sep 13, 2017 at 5:05 PM, Marek Vasut <marek.va...@gmail.com> wrote: >> ... >>> What is the status of those dan

Re: [U-Boot] [PATCH] u-boot: Upgrade to 2017.09

2017-09-13 Thread Otavio Salvador
On Wed, Sep 13, 2017 at 5:05 PM, Marek Vasut <marek.va...@gmail.com> wrote: ... > What is the status of those dangling patches ? They were apparently > posted, but didn't make it into the last two (?) releases. I am confused. Are you asking for U-Boot community or OE community?

Re: [U-Boot] [PATCH] warp: Use PARTUUID to specify the rootfs location

2017-07-11 Thread Otavio Salvador
or the eMMC > changes depending on the kernel version. > > In order to avoid such issue, use UUID method to specify the rootfs > location. > > Succesfully tested booting a NXP 4.1 and also a mainline 4.12 kernel. > > Signed-off-by: Fabio Estevam <fabio.este...@nxp.com>

Re: [U-Boot] [PATCH 1/4] wandboard: Set fdt based on board_rev and board_name

2017-07-10 Thread Otavio Salvador
On Mon, Jul 10, 2017 at 5:14 PM, Fabio Estevam <feste...@gmail.com> wrote: > On Mon, Jul 10, 2017 at 5:04 PM, Otavio Salvador > <ota...@ossystems.com.br> wrote: >> From: Fabio Berton <fabio.ber...@ossystems.com.br> >> >> New kernel linux-wandboard v

[U-Boot] [PATCH 4/4] embestmx6boards: Use PARTUUID to specify the rootfs location

2017-07-10 Thread Otavio Salvador
rootfs location. Also add CONFIG_BOOTCOMMAND to run finduuid function and distro_bootcmd. This change was made based on U-Boot commit: - ca4f338e2efece5196eb2178e5f7d07be828da6e Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> Signed-off-by: Otavio Salvador <ota...@o

[U-Boot] [PATCH 3/4] mx6cuboxi: Use PARTUUID to specify the rootfs location

2017-07-10 Thread Otavio Salvador
rootfs location. This change was made based on U-Boot commit: - ca4f338e2efece5196eb2178e5f7d07be828da6e Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/mx6cuboxi.h | 2 ++ 1 file changed, 2 i

[U-Boot] [PATCH 1/4] wandboard: Set fdt based on board_rev and board_name

2017-07-10 Thread Otavio Salvador
fixes the Wandboard C1 revision device tree files. Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/wandboard.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/con

[U-Boot] [PATCH 2/4] wandboard: Use PARTUUID to specify the rootfs location

2017-07-10 Thread Otavio Salvador
rootfs location. This change was made based on U-Boot commit: - ca4f338e2efece5196eb2178e5f7d07be828da6e Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/wandboard.h | 2 ++ 1 file changed, 2 i

Re: [U-Boot] [PATCH 1/1] Set VLD04 output to 2.8V in PMIC initialization.

2017-06-27 Thread Otavio Salvador
Gautam Bhat <mindentr...@gmail.com> Thanks for the patch; Fabio, could you take a look at this? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854

Re: [U-Boot] Initilize IDE prior environment

2017-06-20 Thread Otavio Salvador
On Tue, Jun 20, 2017 at 2:42 PM, Tom Rini <tr...@konsulko.com> wrote: > On Mon, Jun 19, 2017 at 11:56:04AM -0300, Otavio Salvador wrote: > >> To allow the loading of environment from IDE (for example, using FAT) >> the initilization of IDE subsystem must come befor

Re: [U-Boot] x86 build is broken with GCC 7

2017-06-20 Thread Otavio Salvador
On Tue, Jun 20, 2017 at 12:19 PM, Bin Meng <bmeng...@gmail.com> wrote: > On Tue, Jun 20, 2017 at 10:54 PM, Simon Glass <s...@chromium.org> wrote: >> +Bin >> >> On 20 June 2017 at 08:47, Otavio Salvador >> <otavio.salva...@ossystems.com.br> wrote: >&

Re: [U-Boot] x86 build is broken with GCC 7

2017-06-20 Thread Otavio Salvador
On Tue, Jun 20, 2017 at 11:41 AM, Tom Rini <tr...@konsulko.com> wrote: > On Wed, Jun 14, 2017 at 09:53:37AM -0300, Otavio Salvador wrote: > >> Hello folks, >> >> Testing with current compiler exposed an error: >> >> arch/x86/lib/built-in.o: In function

[U-Boot] [PATCH] Initilize IDE prior environment

2017-06-19 Thread Otavio Salvador
To allow the loading of environment from IDE (for example, using FAT) the initilization of IDE subsystem must come before the environment one. Successfully tested on QEMU x86. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- common/board_r.c | 6 +++--- 1 file changed, 3 inse

[U-Boot] x86 build is broken with GCC 7

2017-06-14 Thread Otavio Salvador
Hello folks, Testing with current compiler exposed an error: arch/x86/lib/built-in.o: In function `__wrap___udivdi3': /home/otavio/src/u-boot/arch/x86/lib/gcc.c:25: undefined reference to `__normal___udivdi3' Is it a known issue? -- Otavio Salvador O.S. Systems

Re: [U-Boot] [PATCH 2/2] Add support for Turing Computer i.MX6x Evaluation Board

2017-04-05 Thread Otavio Salvador
df Author: Ye.Li <b37...@freescale.com> Date: Thu Nov 6 16:29:01 2014 +0800 imx: mx6sxsabresd: Use the pfuze common init function Modify the pfuze init for mx6sxsabresd to use the shared "pfuze_common_init" function. And move this initialization to power_init_bo

Re: [U-Boot] [RFC PATCH 0/3] ARM: imx: mx6: Add plugin support for SPL

2017-01-27 Thread Otavio Salvador
e that the serial >> downloader was used in my case and return BOOT_DEVICE_UART >> appropriately. > > I could also not found any documentation about SRC_GPR9 and SRC_GPR10[28]. I think the BootROM is the ultimate resource here. Did you look internally for its sourc

Re: [U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Otavio Salvador
On Thu, Dec 8, 2016 at 4:55 PM, Simon Glass <s...@chromium.org> wrote: > Hi Otavio, > > On 8 December 2016 at 10:39, Otavio Salvador > <otavio.salva...@ossystems.com.br> wrote: >> Hello everyone, >> >> We are trying to automate some tests and one of th

[U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Otavio Salvador
cannot be saved. Did someone ever made it work? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 ___ U-Boot mailing

Re: [U-Boot] VAR-SOM-MX6 - Boot Count Limit support?

2016-12-08 Thread Otavio Salvador
backend for use. The i.MX has few persistent registers which can be used for this purpose, depending on the product design. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1

Re: [U-Boot] [PATCH 1/2] mx6sabresd: Add Falcon mode support

2016-10-11 Thread Otavio Salvador
SD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / > 512) > +#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR0x1000 /* 2MB */ > + > #define CONFIG_SYS_FSL_USDHC_NUM 3 > #if defined(CONFIG_ENV_IS_IN_MMC) > #define CONFIG_SYS_MMC_ENV_DEV 1 /* SDHC3 */ > -- &

Re: [U-Boot] [PATCH 2/2] mx6sabresd: Add README file

2016-10-11 Thread Otavio Salvador
mode (SPL launches the kernel directly) > > Signed-off-by: Diego Dorta <diego.do...@nxp.com> It is not clear if the SPL supports the QDL automatically or not. Also the Falcon mode uses network boot, why not documenting how to use it from uSD? -- Otavio Salvador

Re: [U-Boot] Building u-boot.imx and SPL simultaneously

2016-09-06 Thread Otavio Salvador
oing u-boot.imx + kernel > + initrd via imx_usb_loader, so what would be needed for SPL + > u-boot.img (+ kenrel + initrd) via imx_usb_loader? Thanks! It should be the same except that the image will be already loaded and we need to instruct the SPL t

Re: [U-Boot] Building u-boot.imx and SPL simultaneously

2016-09-03 Thread Otavio Salvador
this. So for example in: https://github.com/Freescale/meta-fsl-arm/blob/master/conf/machine/imx6slevk.conf#L15 The UBOOT_CONFIG is changed, in local.conf for a machine, to: UBOOT_CONFIG = "spinor sd" Both as build. -- Otavio Salvador O.S. Systems http:/

Re: [U-Boot] [PATCH 2/3] mx6ulinitclockearlier

2016-08-29 Thread Otavio Salvador
/* iomux and setup of i2c */ > board_early_init_f(); > > -- > 1.9.1 > > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot -- Otavio Salvador O.S. Systems http://www.ossystems.c

Re: [U-Boot] [PATCH] warp7: Adjust CONFIG_MMCROOT for booting a mainline kernel

2016-08-25 Thread Otavio Salvador
On Thu, Aug 25, 2016 at 6:01 PM, Fabio Estevam <feste...@gmail.com> wrote: > On Thu, Aug 25, 2016 at 5:56 PM, Otavio Salvador > <otavio.salva...@ossystems.com.br> wrote: ... >> Someone using mainline kernel is expected to know how to set mmcroot >> variable or so.

Re: [U-Boot] [PATCH 1/3] warp7: Add a secure mode target

2016-08-25 Thread Otavio Salvador
; Signed-off-by: Fabio Estevam <fabio.este...@nxp.com> Breno has sent the patch to include this on the main config; being the official kernel using this enabled I think it makes sense to keep his patch. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br

Re: [U-Boot] [PATCH] warp7: Adjust CONFIG_MMCROOT for booting a mainline kernel

2016-08-25 Thread Otavio Salvador
On Thu, Aug 25, 2016 at 5:26 PM, Fabio Estevam <feste...@gmail.com> wrote: > On Thu, Aug 25, 2016 at 5:13 PM, Otavio Salvador > <otavio.salva...@ossystems.com.br> wrote: >> On Thu, Aug 25, 2016 at 3:27 PM, Fabio Estevam <fabio.este...@nxp.com> wrote: >>> Whe

Re: [U-Boot] [PATCH] warp7: Adjust CONFIG_MMCROOT for booting a mainline kernel

2016-08-25 Thread Otavio Salvador
...@nxp.com> As far as I know, the sold WaRP7 boards are shipped with the NXP kernel so if this patch is applied, the U-Boot won't work out of box for most of users. >From me, this is a NACK. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp

Re: [U-Boot] [PATCH] Revert "warp: Use imx_ddr_size() for calculating the DDR size"

2016-08-13 Thread Otavio Salvador
On Fri, Aug 12, 2016 at 6:07 PM, Stefano Babic <sba...@denx.de> wrote: > Hi Fabio, > > On 12/08/2016 21:38, Fabio Estevam wrote: >> Hi Otavio, >> >> On Fri, Aug 12, 2016 at 3:27 PM, Otavio Salvador >> <otavio.salva...@ossystems.com.br> wrote: >>

Re: [U-Boot] [PATCH] Revert "warp: Use imx_ddr_size() for calculating the DDR size"

2016-08-12 Thread Otavio Salvador
he detection. Is it due memory callibration problems? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 ___ U-Boot mailing li

Re: [U-Boot] NXP QorIQ LS1021A-IoT board support

2016-07-29 Thread Otavio Salvador
On Fri, Jul 29, 2016 at 2:19 PM, york sun <york@nxp.com> wrote: > I found the team responsible for this board. Will send you a contact > name in a separated email. Even nicer if someone assumes the responsibility and send the patches for proper support it. ;-) -- Ota

Re: [U-Boot] [PATCH 5/5] cgtqmx6eval: Remove uneeded PHYS_SDRAM_SIZE

2016-07-25 Thread Otavio Salvador
Remove the unneeded definition. > > Cc: Otavio Salvador <ota...@ossystems.com.br> > Signed-off-by: Fabio Estevam <fabio.este...@nxp.com> Acked-by: Otavio Salvador <ota...@ossystems.com.br> -- Otavio Salvador O.S. Systems http://www.ossystems.c

Re: [U-Boot] [PATCH] warp7: Increase CONFIG_BOOTDELAY

2016-07-13 Thread Otavio Salvador
a global default of 2 too. I think we ought to use the default here; so less changes for the board. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 __

Re: [U-Boot] [PATCH v2 4/9] usb: ehci-mx6: introduce config for high active power pin

2016-07-13 Thread Otavio Salvador
cted configuration register, hence the config option > is named by the non-reset configuration. > > Signed-off-by: Stefan Agner <stefan.ag...@toradex.com> Does all i.MX7 uses it? If so, kconfig could depends on it. -- Otavio Salvador O.S. Syste

Re: [U-Boot] [PATCH] arch-mx6: fix MX6_PAD_DECLARE macro to work with MX6 duallite

2016-07-11 Thread Otavio Salvador
elease; this is a bugfix and a critical one. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 ___ U-Boot mailing list U

Re: [U-Boot] [PATCH] wandboard: move environment partition farther from u-boot.img

2016-07-11 Thread Otavio Salvador
On Mon, Jul 11, 2016 at 3:51 AM, Alexey Brodkin <alexey.brod...@synopsys.com> wrote: > On Sat, 2016-07-09 at 10:02 -0300, Otavio Salvador wrote: >> On Sat, Jul 9, 2016 at 9:42 AM, Alexey Brodkin >> <alexey.brod...@synopsys.com> wrote: >> > >> > Recen

Re: [U-Boot] [PATCH] wandboard: move environment partition farther from u-boot.img

2016-07-09 Thread Otavio Salvador
s solution for all that - just move U-Boot's env > to the very end of the gap between U-Boot and the first real partition > on the SD-card. This patch will follow > 8fb9eea5653796 ("mx6sabre_common: Fix U-Boot corruption after 'saveenv'"). > So env is still not in the very end

Re: [U-Boot] [PATCH v2] Make FIT support really optional

2016-06-04 Thread Otavio Salvador
ion the compilation and linking of fit_common.o fit_image.o > image-host.o common/image-fit.o to CONFIG_FIT=y, in tools/Makefile. > > Signed-off-by: Carlos Santos <casan...@datacom.ind.br> Reviewed-by: Otavio Salvador <ota...@ossystems.com.br> Thanks for resending it;

Re: [U-Boot] [PATCH] mx6ul_evk: Remove SPL support

2016-04-19 Thread Otavio Salvador
On Tue, Apr 19, 2016 at 5:13 PM, Fabio Estevam <feste...@gmail.com> wrote: > On Tue, Apr 19, 2016 at 4:22 PM, Otavio Salvador > <otavio.salva...@ossystems.com.br> wrote: > >> This is a huge step back; why it cannot be fixed in the SPL properly? > > Maybe it can, b

Re: [U-Boot] [PATCH] mx6ul_evk: Remove SPL support

2016-04-19 Thread Otavio Salvador
fabio.este...@nxp.com> This is a huge step back; why it cannot be fixed in the SPL properly? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750

Re: [U-Boot] [PATCH v2] imx: imx7 Support for Manufacturing Protection

2016-02-11 Thread Otavio Salvador
y: Ulises Cardenas <raul.ca...@nxp.com> Why this is just an example? Couldn't we better integrate so user could pass addresses for checking? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br

Re: [U-Boot] [PATCH 0/7] fdt: Replace u-boot-dtb.bin with u-boot.bin

2016-01-25 Thread Otavio Salvador
support this addition. Tom, please make sure to mention this on the NEWS entry for the next release as integrations must to be aware of this behavior change. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystem

Re: [U-Boot] [PATCH] imx: mx6sxsabresd: support emmc

2015-12-22 Thread Otavio Salvador
d it is expected to have to rework the BSP of it, as well. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 ___ U-Boot maili

Re: [U-Boot] [PATCH] cgtqmx6eval: fix pad configuration for SPI bus

2015-12-10 Thread Otavio Salvador
> kernel version 3.0.35 hangs during bootprocess in the function etm_init(). > > Signed-off-by: Michael Schanz <michael.sch...@congatec.com> Acked-by: Otavio Salvador <ota...@ossystems.com.br> -- Otavio Salvador O.S. Systems http://www.ossystems.c

Re: [U-Boot] [PATCH] cgtqmx6eval: Fix defconfig name

2015-12-07 Thread Otavio Salvador
On Wed, Nov 25, 2015 at 9:09 AM, Otavio Salvador <ota...@ossystems.com.br> wrote: > After the conversion to SPL the defconfig was renamed, so adjust it. > > Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> Ping? -- Otavio Salvador

[U-Boot] [PATCH] cgtqmx6eval: Fix defconfig name

2015-11-25 Thread Otavio Salvador
After the conversion to SPL the defconfig was renamed, so adjust it. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- board/congatec/cgtqmx6eval/MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/congatec/cgtqmx6eval/MAINTAINERS b/board/co

[U-Boot] [PATCH v6 6/6] cgtqmx6eval: Add DFU support

2015-11-19 Thread Otavio Salvador
Add MMC and SPI DFU support. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: None Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/c

[U-Boot] [PATCH v6 4/6] cgtqmx6eval: Add SPL support

2015-11-19 Thread Otavio Salvador
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: None Changes in v5: - Add missing CONFIG_BOARD_LATE_INIT - Fix checkpatch error

[U-Boot] [PATCH v6 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-11-19 Thread Otavio Salvador
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: None Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 18 ++

[U-Boot] [PATCH v6 5/6] iomux-v3: Take MX6D in consideration for imx_iomux_v3_setup_pad()

2015-11-19 Thread Otavio Salvador
We should also take MX6D option in consideration when defining imx_iomux_v3_setup_pad(). Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: None Changes in v5: None Changes in v4: None arch/arm/include/asm/imx-common/iomux-v3.h | 2 +- 1 file changed, 1 insertion

[U-Boot] [PATCH v6 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-11-19 Thread Otavio Salvador
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: - use ifdef CONFIG_MXC_SPI (Jagan) Changes in v5: None Changes in v4: None board/congatec/cg

[U-Boot] [PATCH v6 3/6] cgtqmx6eval: Add fastboot support

2015-11-19 Thread Otavio Salvador
ed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v6: None Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index 79183c4..ee48fa6 100644 -

Re: [U-Boot] [RESEND PATCH v5 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-11-17 Thread Otavio Salvador
On Tue, Nov 17, 2015 at 4:07 AM, Jagan Teki <jt...@openedev.com> wrote: > On 14 November 2015 at 00:19, Otavio Salvador <ota...@ossystems.com.br> wrote: >> Add SPI NOR support: >> >> => sf probe >> SF: Detected SST25VF032B with page size 256 Bytes, eras

[U-Boot] [RESEND PATCH v5 4/6] cgtqmx6eval: Add SPL support

2015-11-13 Thread Otavio Salvador
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: - Add missing CONFIG_BOARD_LATE_INIT - Fix checkpatch error - Use erase/write as

[U-Boot] [RESEND PATCH v5 6/6] cgtqmx6eval: Add DFU support

2015-11-13 Thread Otavio Salvador
Add MMC and SPI DFU support. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h

[U-Boot] [RESEND PATCH v5 3/6] cgtqmx6eval: Add fastboot support

2015-11-13 Thread Otavio Salvador
ed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index 79183c4..ee48fa6 100644 --- a/inc

[U-Boot] [RESEND PATCH v5 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-11-13 Thread Otavio Salvador
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 18 ++ 1 file changed, 14 inse

[U-Boot] [RESEND PATCH v5 5/6] iomux-v3: Take MX6D in consideration for imx_iomux_v3_setup_pad()

2015-11-13 Thread Otavio Salvador
We should also take MX6D option in consideration when defining imx_iomux_v3_setup_pad(). Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None arch/arm/include/asm/imx-common/iomux-v3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[U-Boot] [RESEND PATCH v5 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-11-13 Thread Otavio Salvador
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None board/congatec/cgtqmx6eval/cgtqmx6eval.c | 23 +++

[U-Boot] Build error for PowerPPC using GCC 5.2 toolchain

2015-11-06 Thread Otavio Salvador
Hello, At Yocto Project I sent the upgrade for the 2015.10 release, of U-Boot, however it is failing badly: http://errors.yoctoproject.org/Errors/Details/21468/ Does someone has any idea how to fix it? -- Otavio Salvador O.S. Systems http://www.ossystems.com.br

Re: [U-Boot] [PATCH v5 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-11-03 Thread Otavio Salvador
On Tue, Nov 3, 2015 at 3:43 PM, Jagan Teki <jt...@openedev.com> wrote: > On 30 October 2015 at 16:04, Otavio Salvador <ota...@ossystems.com.br> wrote: >> Congatec boards boot from SPI NOR, so it makes more sense to use >> SPI NOR to store the environment variables.

Re: [U-Boot] [PATCH v5 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-11-03 Thread Otavio Salvador
On Tue, Nov 3, 2015 at 2:37 PM, Jagan Teki <jt...@openedev.com> wrote: > On 30 October 2015 at 16:04, Otavio Salvador <ota...@ossystems.com.br> wrote: >> Add SPI NOR support: >> >> => sf probe >> SF: Detected SST25VF032B with page size 256 Bytes, erase si

[U-Boot] [PATCH v5 3/6] cgtqmx6eval: Add fastboot support

2015-10-30 Thread Otavio Salvador
ed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index 79183c4..ee48fa6 100644 --- a/inc

[U-Boot] [PATCH v5 4/6] cgtqmx6eval: Add SPL support

2015-10-30 Thread Otavio Salvador
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: - Add missing CONFIG_BOARD_LATE_INIT - Fix checkpatch error - Use erase/write as

[U-Boot] [PATCH v5 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-10-30 Thread Otavio Salvador
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None board/congatec/cgtqmx6eval/cgtqmx6eval.c | 23 +++

[U-Boot] [PATCH v5 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-10-30 Thread Otavio Salvador
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 18 ++ 1 file changed, 14 inse

[U-Boot] [PATCH v5 6/6] cgtqmx6eval: Add DFU support

2015-10-30 Thread Otavio Salvador
Add MMC and SPI DFU support. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None include/configs/cgtqmx6eval.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h

[U-Boot] [PATCH v5 5/6] iomux-v3: Take MX6D in consideration for imx_iomux_v3_setup_pad()

2015-10-30 Thread Otavio Salvador
We should also take MX6D option in consideration when defining imx_iomux_v3_setup_pad(). Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v5: None Changes in v4: None arch/arm/include/asm/imx-common/iomux-v3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [U-Boot] [PATCH v2] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-10-29 Thread Otavio Salvador
vior but we should. I think we ought to convert and work to properly support it, the fallback should not be supported. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53

Re: [U-Boot] [PATCH v2] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-10-29 Thread Otavio Salvador
istro_bootcmd. I am fine with this change. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 ___ U-Boot mailing list

[U-Boot] [PATCH v4 6/6] cgtqmx6eval: Add DFU support

2015-10-29 Thread Otavio Salvador
Add MMC and SPI DFU support. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: None include/configs/cgtqmx6eval.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index d8eff10..c

[U-Boot] [PATCH v4 4/6] cgtqmx6eval: Add SPL support

2015-10-29 Thread Otavio Salvador
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: - Rework README (Marek) - Rework code to compare part-# (Marek) arch/arm/cpu

[U-Boot] [PATCH v4 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-10-29 Thread Otavio Salvador
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: None board/congatec/cgtqmx6eval/cgtqmx6eval.c | 23 +++ includ

[U-Boot] [PATCH v4 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-10-29 Thread Otavio Salvador
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: None include/configs/cgtqmx6eval.h | 18 ++ 1 file changed, 14 insertions(+), 4 del

[U-Boot] [PATCH v4 5/6] iomux-v3: Take MX6D in consideration for imx_iomux_v3_setup_pad()

2015-10-29 Thread Otavio Salvador
We should also take MX6D option in consideration when defining imx_iomux_v3_setup_pad(). Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: None arch/arm/include/asm/imx-common/iomux-v3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ar

[U-Boot] [PATCH v4 3/6] cgtqmx6eval: Add fastboot support

2015-10-29 Thread Otavio Salvador
ed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- Changes in v4: None include/configs/cgtqmx6eval.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index 79183c4..ee48fa6 100644 --- a/include/configs/cgtqmx6eval.h +

Re: [U-Boot] [PATCH v4 4/6] cgtqmx6eval: Add SPL support

2015-10-29 Thread Otavio Salvador
On Thu, Oct 29, 2015 at 8:53 AM, Stefano Babic <sba...@denx.de> wrote: > Hi Otavio, > > On 29/10/2015 11:32, Otavio Salvador wrote: >> Congatec has several MX6 boards based on quad, dual, dual-lite and solo. >> >> Add SPL support so that all the variants c

Re: [U-Boot] [PATCH v4 4/6] cgtqmx6eval: Add SPL support

2015-10-29 Thread Otavio Salvador
On Thu, Oct 29, 2015 at 9:07 AM, Stefano Babic <sba...@denx.de> wrote: > On 29/10/2015 11:58, Otavio Salvador wrote: >> On Thu, Oct 29, 2015 at 8:53 AM, Stefano Babic <sba...@denx.de> wrote: >>> Hi Otavio, >>> >>> On 29/10/2015 11:32, Otavio Salv

Re: [U-Boot] [PATCH v2] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-10-28 Thread Otavio Salvador
fault. > > A lot of goals and functionality is documented reasonably well in > doc/README.distro. Agreed and I think for community and reference boards the distro environment provides some benefits as standardization and flexibility. -- Otavio Salvador O.S. Systems http://ww

[U-Boot] [PATCH v3 3/6] cgtqmx6eval: Add fastboot support

2015-10-28 Thread Otavio Salvador
ed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/cgtqmx6eval.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index 79183c4..ee48fa6 100644 --- a/include/configs/cgtqmx6eval.h +++ b/include/configs/c

[U-Boot] [PATCH v3 6/6] cgtqmx6eval: Add DFU support

2015-10-28 Thread Otavio Salvador
Add MMC and SPI DFU support. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/cgtqmx6eval.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/cgtqmx6eval.h b/include/configs/cgtqmx6eval.h index d8eff10..c7131f1 100644 --- a/i

[U-Boot] [PATCH v3 2/6] cgtqmx6eval: Use SPI NOR to store the environment

2015-10-28 Thread Otavio Salvador
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- include/configs/cgtqmx6eval.h | 18 ++ 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/i

[U-Boot] [PATCH v3 5/6] iomux-v3: Take MX6D in consideration for imx_iomux_v3_setup_pad()

2015-10-28 Thread Otavio Salvador
We should also take MX6D option in consideration when defining imx_iomux_v3_setup_pad(). Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- arch/arm/include/asm/imx-common/iomux-v3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/imx-

[U-Boot] [PATCH v3 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-10-28 Thread Otavio Salvador
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- board/congatec/cgtqmx6eval/cgtqmx6eval.c | 23 +++ include/configs/cgtqmx6eval.h

[U-Boot] [PATCH v3 4/6] cgtqmx6eval: Add SPL support

2015-10-28 Thread Otavio Salvador
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported. Signed-off-by: Otavio Salvador <ota...@ossystems.com.br> --- arch/arm/cpu/armv7/mx6/Kconfig | 3 + board/congatec/cgtqmx6eval/

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

2015-10-28 Thread Otavio Salvador
On Wed, Oct 28, 2015 at 4:22 PM, Jagan Teki <jt...@openedev.com> wrote: > Please pull this PR, and skip the previous one [1] > > [1] https://patchwork.ozlabs.org/patch/535548/ What about Fabio's serie? it is required for the Congatec support to go in as well. --

Re: [U-Boot] [PATCH] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-10-27 Thread Otavio Salvador
On Tue, Oct 27, 2015 at 5:06 PM, Vagrant Cascadian <vagr...@debian.org> wrote: > This allows for more flexible and standardized boot across multiple > platforms. Remove most redundant legacy boot environment. > > Cc: Otavio Salvador <ota...@ossystems.com.br> > Signe

Re: [U-Boot] [PATCH] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-10-27 Thread Otavio Salvador
commit message, this patch doesn't actually "Remove most > redundant legacy boot environment" at all. Leftovers from an earlier > attempt. LOL, this was my complain a minute ago ;-) -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://

Re: [U-Boot] [PATCH 00/12] SPL mmc refactor and alternate boot device feature

2015-10-22 Thread Otavio Salvador
nes the serie drops and a proper documentation in the README files. -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 _

Re: [U-Boot] [PATCH] dfu: dfu_sf: Use the erase sector size for erase operations

2015-10-19 Thread Otavio Salvador
-by: Fabio Estevam <fabio.este...@freescale.com> >> >> > Acked-by: Lukasz Majewski <l.majew...@samsung.com> >> > >> > Applied to u-boot-dfu tree. >> > >> > Thanks for your work. >> > >> > I'm looking forward for more patches

Re: [U-Boot] [PATCH v2 2/2] spi: Add SPI NOR protection mechanism

2015-10-16 Thread Otavio Salvador
id=62593cf40b23b523b9fc9334ca61ba6c595ebb09 > > I have made some changes to the header files so that it can build for > all archs and prepared v7. Is it applicable for 2015.10? -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code

Re: [U-Boot] [PATCH v2] arm: vf610twr: improve memory layout

2015-10-14 Thread Otavio Salvador
the boot commands. > > Move the device tree standard load address to a higher address > which aligns better with what we are doing on other boards. > > Signed-off-by: Stefan Agner <ste...@agner.ch> Great! Acked-by: Otavio Salvador <ota...@ossystems.com.br> -- Otavio Salv

Re: [U-Boot] [PATCH] vf610twr: Enable all masks of CCGRx registers.

2015-10-13 Thread Otavio Salvador
g run time. Agreed; the clocks enabled in the U-Boot should be the bare minimal to get the CPU in an usable form, and all the rest should be handled by the loaded operating system. There is no reason to increase power consumption for every user when the kernel can handle it. -- Otavio Sa

<    1   2   3   4   5   6   7   8   9   10   >