[U-Boot] [PATCH] nitrogen6x : Use generic distro configuration

2016-06-24 Thread Fabien Lahoudere
/extlinux.conf with for example: default Buildroot label Buildroot kernel /boot/zImage append console=ttymxc1,115200 root=/dev/mmcblk0p1 rootwait rw fdtdir /boot Signed-off-by: Fabien Lahoudere <fabien.lahoud...@collabora.co.uk> --- configs/mx6qsabrelite_defconfig | 1 + c

Re: [U-Boot] [PATCH] nitrogen6x : Use generic distro configuration

2016-06-28 Thread Fabien Lahoudere
On 27/06/16 20:51, Troy Kisky wrote: On 6/24/2016 8:59 AM, Fabien Lahoudere wrote: In order to simplify the use of various images on various media for nitrogen6x, the configuration of the board must follow the generic distro configuration (doc/README.distro). In order to boot your old rootfs

Re: [U-Boot] [PATCH v2] nitrogen6x : Use generic distro configuration

2016-06-28 Thread Fabien Lahoudere
/extlinux.conf with for example: default Buildroot label Buildroot kernel /boot/zImage append console=ttymxc1,115200 root=/dev/mmcblk0p1 rootwait rw fdtdir /boot Signed-off-by: Fabien Lahoudere <fabien.lahoud...@collabora.co.uk> --- Changes for V2: - reintegration of d

[U-Boot] [PATCH v3] nitrogen6x : Use generic distro configuration

2016-06-29 Thread Fabien Lahoudere
/extlinux.conf with for example: default Buildroot label Buildroot kernel /boot/zImage append console=ttymxc1,115200 root=/dev/mmcblk0p1 rootwait rw fdtdir /boot Signed-off-by: Fabien Lahoudere <fabien.lahoud...@collabora.co.uk> --- Changes for V2: - reintegration of d

Re: [U-Boot] [PATCH v3] nitrogen6x : Use generic distro configuration

2016-07-20 Thread Fabien Lahoudere
Hi Stefano, Thank you for your comments. On 13/07/2016 16:28, Stefano Babic wrote: Hi Fabien, On 29/06/2016 09:05, Fabien Lahoudere wrote: In order to simplify the use of various images on various media for nitrogen6x, the configuration of the board must follow the generic distro

Re: [U-Boot] [PATCH] nitrogen6x : Use generic distro configuration

2016-06-28 Thread Fabien Lahoudere
On 28/06/16 12:58, Sjoerd Simons wrote: On Fri, 2016-06-24 at 17:59 +0200, Fabien Lahoudere wrote: In order to simplify the use of various images on various media for nitrogen6x, the configuration of the board must follow the generic distro configuration (doc/README.distro). In order to boot

[U-Boot] [PATCH v4] nitrogen6x : Use generic distro configuration

2016-08-02 Thread Fabien Lahoudere
/extlinux.conf with for example: default Buildroot label Buildroot kernel /boot/zImage append console=ttymxc1,115200 root=/dev/mmcblk0p1 rootwait rw fdtdir /boot Signed-off-by: Fabien Lahoudere <fabien.lahoud...@collabora.co.uk> --- Changes for V2: - reintegration of delet

[U-Boot] [PATCH 0/2] board: ge: bx50v3: Fix screen flickering

2018-10-15 Thread Fabien Lahoudere
This patchset solves screen flickering observed at bootup on b650v3. Steps to reproduce: 1) Connect B650 to power. 2) Switch On the Monitor. 3) Observe the display. Ian Ray (2): board: ge: bx50v3: correct LDB clock board: ge: bx50v3: b{4,6}50v3 modeline board/ge/bx50v3/bx50v3.c | 32

[U-Boot] [PATCH 1/2] board: ge: bx50v3: correct LDB clock

2018-10-15 Thread Fabien Lahoudere
From: Ian Ray Use Video PLL to provide 65MHz for all displays. Signed-off-by: Ian Ray Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/bx50v3.c | 30 +- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3

[U-Boot] [PATCH 1/1] board: ge: bx50v3: Change maintainer

2018-10-15 Thread Fabien Lahoudere
While using ./scripts/get_maintainer.pl I detect that the Maintainer name and address for bx50v3 boards are not valid. The new maintainer for GE bx50v3 products must be Ian Ray. Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[U-Boot] [PATCH 1/1] board: ge: bx50v3: fix initialization of i2c bus0

2018-10-15 Thread Fabien Lahoudere
) courtesy of incorrect initialization. Signed-off-by: Dan Cimpoca Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/bx50v3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3/bx50v3.c index 2eb1b65..2458525 100644 --- a/board/ge

[U-Boot] [PATCH 2/2] board: ge: bx50v3: b{4,6}50v3 modeline

2018-10-15 Thread Fabien Lahoudere
From: Ian Ray The b{4,6}50v3 kernel framebuffer console requires a modeline otherwise the LVDS panel shows garbage. Signed-off-by: Ian Ray Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/bx50v3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge

[U-Boot] [PATCH V3 3/6] bootcount: i2c: Add bus switching to the I2C bootcount driver

2018-10-17 Thread Fabien Lahoudere
From: Denis Zalevskiy If there is an I2C mux, current bus should be switched before manipulating with I2C. Signed-off-by: Denis Zalevskiy Signed-off-by: Fabien Lahoudere --- drivers/bootcount/Kconfig | 15 - drivers/bootcount/bootcount_i2c.c | 71

[U-Boot] [PATCH V3 2/6] board: ge: Move VPD EEPROM configuration to the defconfig

2018-10-17 Thread Fabien Lahoudere
From: Denis Zalevskiy Use standard configuration logic to define EEPROM constants. Names are based on VPD_EEPROM_ prefix because EEPROM_ is already used by i2c_eeprom driver. Signed-off-by: Denis Zalevskiy Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/Kconfig | 2 ++ board/ge

[U-Boot] [PATCH V3 4/6] bootcount: Configure length limit for I2C bootcount

2018-10-17 Thread Fabien Lahoudere
From: Denis Zalevskiy Bootcount driver should verify size against the maximum available space. New configuration parameter adds this capability and keeps backward compatibility by providing default value. Signed-off-by: Denis Zalevskiy Signed-off-by: Fabien Lahoudere --- drivers/bootcount

[U-Boot] [PATCH V3 5/6] board: ge: Move VPD reading to the vpd_reader

2018-10-17 Thread Fabien Lahoudere
-off-by: Fabien Lahoudere --- board/ge/bx50v3/bx50v3.c | 48 ++-- board/ge/common/vpd_reader.c | 37 +++--- board/ge/common/vpd_reader.h | 16 ++- board/ge/mx53ppd/mx53ppd.c | 38

[U-Boot] [PATCH V3 6/6] board: ge: Store bootcount in EEPROM on PPD and Bx50v3

2018-10-17 Thread Fabien Lahoudere
where VPD is stored. Signed-off-by: Denis Zalevskiy Signed-off-by: Fabien Lahoudere --- board/ge/common/vpd_reader.c | 20 configs/ge_bx50v3_defconfig | 18 ++ configs/mx53ppd_defconfig| 19 +++ include/configs/ge_bx50v3.h | 6

[U-Boot] [PATCH V3 1/6] board: ge: Remove EEPROM bus param from read_vpd()

2018-10-17 Thread Fabien Lahoudere
From: Denis Zalevskiy The bus is statically defined, so remove redundant parameters from read_vpd() for PPD and Bx50v3. Signed-off-by: Denis Zalevskiy Signed-off-by: Fabien Lahoudere --- board/ge/bx50v3/bx50v3.c | 6 +++--- board/ge/mx53ppd/mx53ppd.c | 6 +++--- 2 files changed, 6

[U-Boot] [PATCH V3 0/6] board: ge: Move bootcount to EEPROM

2018-10-17 Thread Fabien Lahoudere
GE boards need bootcount set in EEPROM instead of file to avoid some issues. This series replace v2 sent by Sebastian Reichel on 2018-07-20. Changes since v2: - Patches have been rebased to apply correctly on master. - Remove a build time warning - Remove checkpatch.pl warning Denis

[U-Boot] [PATCH 1/1] embestmx6boards: Add SPL support

2018-11-08 Thread Fabien Lahoudere
In order to boot faster with falcon mode, we need to add SPL support to riotboard. Signed-off-by: Fabien Lahoudere --- arch/arm/mach-imx/mx6/Kconfig | 1 + board/embest/mx6boards/mx6boards.c | 48 ++ configs/riotboard_spl_defconfig| 48

[U-Boot] [PATCH 1/2] spl: define kernel and dtb name for falcon mode from menuconfig

2018-11-13 Thread Fabien Lahoudere
with binaries in different places. The two previous problem let me think that it can be easier to add this information in the config file and have an entry in menuconfig to define them, instead of patching source code. This patch propose a solution. Signed-off-by: Fabien Lahoudere --- common/spl

[U-Boot] [PATCH 2/2] spl: Move kernel and dtb name for falcon mode

2018-11-13 Thread Fabien Lahoudere
Move kernel and dtb name variable from headers to defconfig or use default value from KConfig. Signed-off-by: Fabien Lahoudere --- configs/xilinx_zynqmp_zc1232_revA_defconfig | 2 ++ configs/xilinx_zynqmp_zc1254_revA_defconfig | 2 ++ configs/xilinx_zynqmp_zc1275_revA_defconfig

[U-Boot] [PATCH 1/1] arm: spl: Fix SPL falcon mode boot on MMC with ext partition

2018-10-09 Thread Fabien Lahoudere
If the kernel is on an ext partition, we cannot load it because spl_boot_mode() return MMCSD_MODE_RAW instead of MMCSD_MODE_FS. Signed-off-by: Fabien Lahoudere --- arch/arm/mach-imx/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach