Re: arm: imx6: configure NoC on i.MX6DQP

2020-02-07 Thread Bernhard Messerklinger
-"U-Boot" schrieb: - > Hi Stefano, Filip, > > I found this patch on the mailing list: > https://patchwork.ozlabs.org/patch/670208/ > > As far as I can see this patch never made it to mainline. > I have tested and reviewed the patch and it works for me. > With this patch my i.MX6QP DDR3

Re: [U-Boot] [PATCH] ARM: socfpga: Remove socfpga_sdram_apply_static_cfg()

2020-02-07 Thread Marek Vasut
On 2/7/20 1:09 PM, Simon Goldschmidt wrote: > On Fri, Feb 7, 2020 at 8:56 AM Marek Vasut wrote: >> >> On 2/6/20 3:57 PM, Simon Goldschmidt wrote: >>> On Thu, Feb 6, 2020 at 3:41 PM Nico Becker >>> wrote: Am 06.02.2020 um 14:00 schrieb Marek Vasut: > On 2/6/20 1:57 PM, Nico Becker

[PATCH] net: phy: dp83867: Do not check sgmii if rgmii is already used

2020-02-07 Thread Michal Simek
There is no reason to check sgmii branch again when it is clear that phy interface is rgmii. Signed-off-by: Michal Simek --- drivers/net/phy/dp83867.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/phy/dp83867.c b/drivers/net/phy/dp83867.c index

[PATCH] configs: fix typos in khadas-edge defconfigs

2020-02-07 Thread Jared Baldridge
s/dtbi/dtb/ Signed-off-by: Jared Baldridge --- configs/khadas-edge-captain-rk3399_defconfig | 2 +- configs/khadas-edge-v-rk3399_defconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/khadas-edge-captain-rk3399_defconfig

Modifying uboot of Jetson TX2 board to add additional UART

2020-02-07 Thread vinmean
Hello every one, I am new here as well as to u-boot code. I am using nvidia's Jetson TX2 board. I got my self into this task of modifying the u-boot source to add additional uart port for the TX2 board. All I have learnt now is to build and flash the u-boot to the device. The TX2's U-boot that

Modifying uboot of Jetson TX2 board to add additional UART

2020-02-07 Thread vinmean
Hello every one, I am new here as well as to u-boot code. I am using nvidia's Jetson TX2 board. I got my self into this task of modifying the u-boot source to add additional uart port for the TX2 board. All I have learnt now is to build and flash the u-boot to the device. The TX2's U-boot that

RE: [PATCH v2 1/1] efi_loader: architecture specific UEFI setup

2020-02-07 Thread Chang, Abner (HPS SW/FW Technologist)
> -Original Message- > From: Atish Patra [mailto:ati...@atishpatra.org] > Sent: Friday, February 7, 2020 6:56 AM > To: Ard Biesheuvel ; Chang, Abner (HPS SW/FW > Technologist) > Cc: Alexander Graf ; Heinrich Schuchardt > ; U-Boot Mailing List ; Atish > Patra ; l...@nuviainc.com >

[PATCH v1] colibri_imx7: add README file

2020-02-07 Thread Igor Opaniuk
From: Igor Opaniuk Add initial README file which provides all needed information for obtaining a workable image ready for flashing for both eMMC/NAND versions of Colibri iMX7. Signed-off-by: Igor Opaniuk --- board/toradex/colibri_imx7/README | 107 ++ 1 file

[PATCH] lib: Improve _parse_integer_fixup_radix base 16 detection

2020-02-07 Thread Michal Simek
Base autodetection is failing for this case: if test 257 -gt 3ae; then echo first; else echo second; fi It is because base for 3ae is recognized by _parse_integer_fixup_radix() as 10. The patch is checking all chars to make sure that they are not 'a' or up. If they are base needs to be in hex.

Re: [PATCH v1] imx: imx8qm: enable relocation of fdt and initrd

2020-02-07 Thread Oliver Graute
On 05/02/20, Tom Rini wrote: > On Wed, Feb 05, 2020 at 03:51:42PM +, Oliver Graute wrote: > > > Remove 'fdt_high' and 'initrd_high' environment variables (set to > > 0x) > > from default environment which prevents relocation of FDT and initrd. > > > > Signed-off-by: Oliver Graute >

Re: [U-Boot] [PATCH] ARM: socfpga: Remove socfpga_sdram_apply_static_cfg()

2020-02-07 Thread Simon Goldschmidt
On Fri, Feb 7, 2020 at 8:56 AM Marek Vasut wrote: > > On 2/6/20 3:57 PM, Simon Goldschmidt wrote: > > On Thu, Feb 6, 2020 at 3:41 PM Nico Becker > > wrote: > >> > >> Am 06.02.2020 um 14:00 schrieb Marek Vasut: > >>> On 2/6/20 1:57 PM, Nico Becker wrote: > Am 06.02.2020 um 12:53 schrieb

[PATCH] ARM: ti: Increase the allocated size for MLO.raw

2020-02-07 Thread Faiz Abbas
MLO has increased to a size greater than the allocated 128 kB in dfu_alt_info_emmc and _mmc. Therefore, double the allocated size for MLO.raw in the default environment. Signed-off-by: Faiz Abbas --- include/environment/ti/dfu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

Re: [PATCH v1] colibri_imx7: add README file

2020-02-07 Thread Oleksandr Suvorov
On Fri, Feb 7, 2020 at 1:14 PM Igor Opaniuk wrote: > > From: Igor Opaniuk > > Add initial README file which provides all needed information > for obtaining a workable image ready for flashing > for both eMMC/NAND versions of Colibri iMX7. > > Signed-off-by: Igor Opaniuk Reviewed-by: Oleksandr

Re: [PATCH v4 00/17] x86: coral: Add support for Cr50

2020-02-07 Thread Bin Meng
On Fri, Feb 7, 2020 at 12:55 AM Simon Glass wrote: > > This series adds a driver for the Cr50 security chip and enables it on > coral. This supports the 'tpm' command. > > In order to make this work a few other changes are included: > - Additional UCLASS_IRQ operations to support requesting and

Re: [PATCH] ARM: ti: Increase the allocated size for MLO.raw

2020-02-07 Thread Tom Rini
On Fri, Feb 07, 2020 at 04:09:06PM +0530, Faiz Abbas wrote: > MLO has increased to a size greater than the allocated > 128 kB in dfu_alt_info_emmc and _mmc. > > Therefore, double the allocated size for MLO.raw in > the default environment. > > Signed-off-by: Faiz Abbas 128KiB was chosen as

Re: [U-Boot] [PATCH] ARM: socfpga: Remove socfpga_sdram_apply_static_cfg()

2020-02-07 Thread Marek Vasut
On 2/7/20 2:44 PM, Simon Goldschmidt wrote: [...] >>> This depends on the FPGA image, while currently the Altera work flow >>> compiles >>> it into the U-Boot binary.While I'm still working on moving this into the >>> U-Boot >>> dts (I still have size issues there), it's still not encoded with

Re: [yocto] Support UBI u-boot

2020-02-07 Thread Gabriele Zampieri
Hi, On Fri, Feb 7, 2020 at 2:55 AM JH wrote: > Hi Gabriele, > > On 2/6/20, Gabriele Zampieri wrote: > > As far as I know uboot (usually virtual/bootloader) does not have a task > to > > run menuconfig directly from bitbake. > > I usually have a local clone of uboot and I simply run `make [...]

Re: [PATCH v3 00/17] x86: coral: Add support for Cr50

2020-02-07 Thread Simon Glass
Hi Bin, On Thu, 6 Feb 2020 at 20:36, Bin Meng wrote: > > Hi Simon, > > On Fri, Feb 7, 2020 at 12:55 AM Simon Glass wrote: > > > > Hi Bin, > > > > On Wed, 5 Feb 2020 at 23:22, Bin Meng wrote: > > > > > > Hi Simon, > > > > > > On Wed, Feb 5, 2020 at 10:03 AM Simon Glass wrote: > > > > > > > >

[PATCH 2/4] i2c: Export i2c_deblock_gpio_loop()

2020-02-07 Thread Marek Vasut
Export the i2c_deblock_gpio_loop() so it can be used in other places in U-Boot. In particular, this is useful in the GPIO I2C driver, which claims the SDA/SCL GPIOs and thus prevents the i2c_deblock() implementation from claiming the pins as GPIOs again. Signed-off-by: Marek Vasut ---

[PATCH 4/4] i2c: gpio: Run deblock sequence on probe

2020-02-07 Thread Marek Vasut
Add deblock dequence for the I2C bus, needed on some devices. This sequence is issued once, when probing the driver, and is controlled by DT property, "i2c-gpio,deblock". Signed-off-by: Marek Vasut --- drivers/i2c/i2c-gpio.c | 15 +++ 1 file changed, 15 insertions(+) diff --git

[PATCH 3/4] i2c: Add option to send start condition after deblocking

2020-02-07 Thread Marek Vasut
Add option to send start condition after deblocking SDA. Signed-off-by: Marek Vasut --- drivers/i2c/i2c-uclass.c | 23 --- include/i2c.h| 4 +++- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/drivers/i2c/i2c-uclass.c b/drivers/i2c/i2c-uclass.c

Re: [PATCH v1] colibri_imx7: add README file

2020-02-07 Thread Bin Meng
Hi Igor, On Fri, Feb 7, 2020 at 7:14 PM Igor Opaniuk wrote: > > From: Igor Opaniuk > > Add initial README file which provides all needed information > for obtaining a workable image ready for flashing > for both eMMC/NAND versions of Colibri iMX7. > > Signed-off-by: Igor Opaniuk > --- > >

Re: [RFC PATCH 09/10] arm: add support for SoC s5p4418 (cpu) / nanopi2 board

2020-02-07 Thread Tom Rini
On Mon, Feb 03, 2020 at 09:46:39PM +0100, Stefan Bosch wrote: > Changes in relation to FriendlyARM's U-Boot nanopi2-v2016.01: > - SPL not supported yet --> no spl-dir in arch/arm/cpu/armv7/s5p4418/. > Appropriate line in Makefile removed. > - cpu.c: '#include ' added. > -

Re: [RFC PATCH 00/10] arm: add support for SoC S5P4418

2020-02-07 Thread Tom Rini
On Mon, Feb 03, 2020 at 08:39:22PM +0100, Stefan Bosch wrote: > This patch adds support for SAMSUNG's/NEXELL's ARM Cortex-A9 based > S5P4418 SoC, especially FriendlyARM's NanoPi2 and NanoPC-T2 boards. > It is based on the following FriendlyARM's U-Boot version: >

enabling CONFIG_FIT_SIGNATURE breaks U-Boot

2020-02-07 Thread Rasmus Villemoes
I'm trying to enable verified boot on an mpc8309, but the first step of simply enabling CONFIG_FIT_SIGNATURE causes this: [2020-02-07 17:23:34.342] U-Boot 2020.01-00037-g6e82ca3d2e (Feb 07 2020 - 17:23:16 +0100) [2020-02-07 17:23:34.379] [2020-02-07 17:23:34.379] Error binding driver

[PATCH 1/4] i2c: Make deblock delay and SCL clock configurable

2020-02-07 Thread Marek Vasut
Make the delay between SCL line changes and the number of SCL clock changes configurable as a parameter of the deblock function. No functional change. Signed-off-by: Marek Vasut --- drivers/i2c/i2c-uclass.c | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff

[PATCH] net: convert NET_MAXDEFRAG to Kconfig

2020-02-07 Thread Rasmus Villemoes
Signed-off-by: Rasmus Villemoes --- net/Kconfig | 10 ++ net/net.c| 3 --- scripts/config_whitelist.txt | 1 - 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/net/Kconfig b/net/Kconfig index a07f6746c5..96bbce1778 100644 ---

Re: [U-Boot] [PATCH] ARM: socfpga: Remove socfpga_sdram_apply_static_cfg()

2020-02-07 Thread Simon Goldschmidt
On Fri, Feb 7, 2020 at 1:27 PM Marek Vasut wrote: > > On 2/7/20 1:09 PM, Simon Goldschmidt wrote: > > On Fri, Feb 7, 2020 at 8:56 AM Marek Vasut wrote: > >> > >> On 2/6/20 3:57 PM, Simon Goldschmidt wrote: > >>> On Thu, Feb 6, 2020 at 3:41 PM Nico Becker > >>> wrote: > > Am

Re: [PATCH v1] imx: imx8qm: enable relocation of fdt and initrd

2020-02-07 Thread Tom Rini
On Fri, Feb 07, 2020 at 11:46:11AM +0100, Oliver Graute wrote: > On 05/02/20, Tom Rini wrote: > > On Wed, Feb 05, 2020 at 03:51:42PM +, Oliver Graute wrote: > > > > > Remove 'fdt_high' and 'initrd_high' environment variables (set to > > > 0x) > > > from default environment which

[PATCH] azure/gitlab: Update to Docker to have SDL2 available

2020-02-07 Thread Tom Rini
Update to a newer Docker image that contains SDL2 libraries as required by recent Sandbox changes. Signed-off-by: Tom Rini --- .azure-pipelines.yml | 2 +- .gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml

Re: dm, serial: problem with using ns16550 driver before relocation on mpc83xx

2020-02-07 Thread Simon Glass
Hi Heiko, On Thu, 6 Feb 2020 at 22:53, Heiko Schocher wrote: > > Hi Simon, > > removed Dirk from cc and added Mario Six > > @Mario: Dirk is maintainer of the gazerbeam board: > > https://gitlab.denx.de/u-boot/u-boot/blob/master/board/gdsys/mpc8308/MAINTAINERS#L2 > > but EMail get not delivered

Re: [PATCH] net: convert NET_MAXDEFRAG to Kconfig

2020-02-07 Thread Simon Glass
On Fri, 7 Feb 2020 at 08:17, Rasmus Villemoes wrote: > > Signed-off-by: Rasmus Villemoes > --- > net/Kconfig | 10 ++ > net/net.c| 3 --- > scripts/config_whitelist.txt | 1 - > 3 files changed, 10 insertions(+), 4 deletions(-) Reviewed-by: Simon

Re: [PATCH] azure: Use our own GRUB binaries

2020-02-07 Thread Tom Rini
On Fri, Feb 07, 2020 at 11:46:59AM -0500, Tom Rini wrote: > Use the same logic from 24df1b14f3ab to use our own GRUB binaries in > Azure pipelines as well. > > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] azure/gitlab: Update to Docker to have SDL2 available

2020-02-07 Thread Tom Rini
On Fri, Feb 07, 2020 at 12:23:54PM -0500, Tom Rini wrote: > Update to a newer Docker image that contains SDL2 libraries as required > by recent Sandbox changes. > > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

[PATCH 1/1] doc: board: add Rockchip to doc/board/index.rst

2020-02-07 Thread Heinrich Schuchardt
Fix a build error checking consistency... /doc/board/rockchip/index.rst: WARNING: document isn't included in any toctree Fixes: 338b86c9b305 ("doc: boards: Add rockchip documentation") Signed-off-by: Heinrich Schuchardt --- doc/board/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH] azure: Use our own GRUB binaries

2020-02-07 Thread Tom Rini
Use the same logic from 24df1b14f3ab to use our own GRUB binaries in Azure pipelines as well. Signed-off-by: Tom Rini --- .azure-pipelines.yml | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index

Re: enabling CONFIG_FIT_SIGNATURE breaks U-Boot

2020-02-07 Thread Rasmus Villemoes
On 07/02/2020 17.30, Rasmus Villemoes wrote: > I'm trying to enable verified boot on an mpc8309, but the first step of > simply enabling CONFIG_FIT_SIGNATURE causes this: Well, more precisely, CONFIG_RSA causes that - I tried disabling CONFIG_FIT_SIGNATURE but kept CONFIG_RSA, and the same still

Re: [gitlab-ci-runner PATCH] Dockerfile: Add libsdl2-dev

2020-02-07 Thread Tom Rini
On Mon, Feb 03, 2020 at 08:29:19AM -0700, Simon Glass wrote: > We are planning to move sandbox from SDL1.2 to SDL2, so add this library > to the docker image. > > Signed-off-by: Simon Glass > Reviewed-by: Bin Meng Applied to gitlab-ci-runner/master, thanks! -- Tom signature.asc

Re: [PATCH 1/1] gitlab: use our own GRUB

2020-02-07 Thread Tom Rini
On Thu, Dec 19, 2019 at 01:30:32PM +0100, Heinrich Schuchardt wrote: > Up to now we have been relying on openSUSE repositories for GRUB on arm and > arm64 though we have included GRUB in our Docker image. > > Use the GRUB included in our Docker image. > > Signed-off-by: Heinrich Schuchardt

Re: Pull request for UEFI sub-system for efi-2020-04-rc2

2020-02-07 Thread Tom Rini
On Thu, Feb 06, 2020 at 04:46:02AM +0100, Heinrich Schuchardt wrote: > The following changes since commit d4827fcd4c1b04c338e4019e412f495aa4231d24: > > Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86 (2020-02-04 > 11:36:49 -0500) > > are available in the Git repository at: > >

Re: [PULL] u-boot-socfpga/master

2020-02-07 Thread Tom Rini
On Wed, Feb 05, 2020 at 07:58:12AM +0100, Marek Vasut wrote: > The following changes since commit 31a790bee939e227dfc7e6a6a323b2b13180707f: > > Merge branch 'master' of git://git.denx.de/u-boot-usb (2020-02-02 > 15:26:53 -0500) > > are available in the Git repository at: > >

[PATCH 2/2] dm: i2c-gpio: add support for clock stretching

2020-02-07 Thread Michael Auchter
This adds support for clock stretching to the i2c-gpio driver. This is accomplished by switching the GPIO used for the SCL line to an input when it should be driven high, and polling on the SCL line value until it goes high (indicating that the I2C slave is no longer pulling it low). This is

[PATCH 1/2] dm: i2c-gpio: rework gpio get/set functions

2020-02-07 Thread Michael Auchter
This patch reworks i2c-gpio to make it easier to switch out the implementation of the sda/scl get/set functions. This is in preparation for a patch to conditionally implement clock stretching support. Signed-off-by: Michael Auchter Cc: Heiko Schocher --- drivers/i2c/i2c-gpio.c | 133

Re: enabling CONFIG_FIT_SIGNATURE breaks U-Boot

2020-02-07 Thread Rasmus Villemoes
On 07/02/2020 17.50, Rasmus Villemoes wrote: > On 07/02/2020 17.30, Rasmus Villemoes wrote: >> I'm trying to enable verified boot on an mpc8309, but the first step of >> simply enabling CONFIG_FIT_SIGNATURE causes this: > > Well, more precisely, CONFIG_RSA causes that - I tried disabling >

Re: [U-Boot] [PATCH v4 2/6] fat: write: adjust data written in each partial write

2020-02-07 Thread Tom Rini
On Mon, Dec 02, 2019 at 12:11:14PM +0100, Marek Szyprowski wrote: > The code for handing file overwrite incorrectly calculated the amount of > data to write when writing to the last non-cluster aligned chunk. Fix > this by ensuring that no more data than the 'filesize' is written to disk. > While

Re: [PATCH 1/1 v1] cmd: gpio: Correct do_gpio() return value

2020-02-07 Thread Tom Rini
On Sun, Jan 05, 2020 at 08:10:56PM +0100, Luka Kovacic wrote: > Use the correct return value in function do_gpio() and update > commands documentation with the return values from command_ret_t enum. > > CMD_RET_SUCCESS is returned on command success and CMD_RET_FAILURE is > returned on command

Re: [U-boot, 1/4] eth: mtk-eth: add sgmii mode support in mediatek eth driver

2020-02-07 Thread Tom Rini
On Tue, Jan 21, 2020 at 07:31:57PM +0800, MarkLee wrote: > This patch add sgmii init part for the mediatek SoC that > support sgmii mode. It is a must for mt7622. > > Signed-off-by: MarkLee Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] [PATCH v4 1/6] fat: write: fix broken write to fragmented files

2020-02-07 Thread Tom Rini
On Mon, Dec 02, 2019 at 12:11:13PM +0100, Marek Szyprowski wrote: > The code for handing file overwrite incorrectly assumed that the file on > disk is always contiguous. This resulted in corrupting disk structure > every time when write to existing fragmented file happened. Fix this > by adding

Re: [U-boot, 2/4] eth: mtk-eth: add mt7622 support in mediatek eth driver

2020-02-07 Thread Tom Rini
On Tue, Jan 21, 2020 at 07:31:58PM +0800, MarkLee wrote: > This patch add mt7622 support in mediatek eth driver > > Signed-off-by: MarkLee Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH 1/1] doc: fix AX25-AE350 RISC-V documentation

2020-02-07 Thread Heinrich Schuchardt
On 2/4/20 3:50 PM, Bin Meng wrote: On Sat, Dec 28, 2019 at 2:51 AM Heinrich Schuchardt wrote: Since commit 04883bf7acca ("doc: update AX25-AE350 RISC-V documentation") `make htmldocs` produces a log of warnings like doc/board/AndesTech/ax25-ae350.rst:373: WARNING: Block quote ends without a

Re: [U-Boot] Sharing a hardware lab

2020-02-07 Thread Tom Rini
On Wed, Feb 05, 2020 at 11:21:41AM -0700, Stephen Warren wrote: > On 2/5/20 7:10 AM, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 4 Dec 2019 at 15:30, Tom Rini wrote: > > > > > > On Fri, Nov 29, 2019 at 09:23:43PM -0700, Simon Glass wrote: > > > > > > > Hi Tom, > > > > > > > > I have been

Re: [PATCH] mpc8xx: Expose show_regs()

2020-02-07 Thread Tom Rini
On Wed, Jan 29, 2020 at 11:07:19AM -0500, Tom Rini wrote: > To match the other PowerPC platforms the function show_regs() must not > be marked static but instead be an exposed global function. > > Cc: Christophe Leroy > Cc: Wolfgang Denk > Signed-off-by: Tom Rini > Acked-by: Christophe Leroy

Re: [U-boot, 3/4] arm: dts: mediatek: add ethernet and sgmii dts node for mt7622

2020-02-07 Thread Tom Rini
On Tue, Jan 21, 2020 at 07:31:59PM +0800, MarkLee wrote: > This patch add eth and sgmii dts node for mt7622 to support ethernet > > Signed-off-by: MarkLee Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v4 2/6] gpio: do not include for Cortina CAxxxx SoCs

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:55PM -0800, Alex Nemirovsky wrote: > From: Jason Li > > The Cortina CA GPIO driver maintains DM_GPIO support > across different CPU ISA in the CA Soc Family; Not just ARM. > Therefore, it is not desirable to split out and maintain separete > gpio header

Re: [PATCH] cmd/elf.c: Add SPDX tag

2020-02-07 Thread Tom Rini
On Wed, Jan 29, 2020 at 11:03:34AM -0500, Tom Rini wrote: > Based on reading the text of the license comment this appears to be > the BSD-2-Clause license but with an imperfect word match as > BSD-2-Clause was not (as far as I recall) a common license choice at the > time the code was written. >

Re: [U-boot,4/4] configs: mediatek: enable mt7622 ethernet support

2020-02-07 Thread Tom Rini
On Tue, Jan 21, 2020 at 07:32:00PM +0800, MarkLee wrote: > This patch enable mt7622 ethernet support in its defconfig > > Signed-off-by: MarkLee Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v4 1/6] MAINTAINERS, git-mailrc: cortina: add Custodian for Cortina Access Inc.

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:54PM -0800, Alex Nemirovsky wrote: > Assign Alex Nemirovsky as custodian for all > Cortina Access (CA) for ARM and MIPS based SoCs. > > Currently Cortina Access CA family of SoCs support both > ARM and MIPS ISA. Drivers have cross platform support for > both

Re: [PATCH v4 5/6] serial: serial_cortina: add UART DM driver for CAxxxx SoCs

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:58PM -0800, Alex Nemirovsky wrote: > From: Jason Li > > Add serial UART driver support for all Cortina Access > CA family of SoCs. > > Reviewed-by: Daniel Schwierzeck > Signed-off-by: Jason Li > Signed-off-by: Alex Nemirovsky Applied to u-boot/master,

Re: [PATCH v4 6/6] board: presidio-asic: Add basic G3 engr. development board support

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:59PM -0800, Alex Nemirovsky wrote: > Add basic Presidio G3 engineering board support > > Signed-off-by: Alex Nemirovsky Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v3] eth: mtk-eth: aarch64: fix build warnings on ethernet-driver

2020-02-07 Thread Tom Rini
On Fri, Jan 31, 2020 at 10:23:29AM +0100, Frank Wunderlich wrote: > building mtk ethernet driver for aarch64 (mt7622) results > in warnings/errors > > "error: cast from pointer to integer of different size" > > Fixes: 23f17164d9 ("ethernet: MediaTek: add ethernet driver for MediaTek >

Re: [PATCH v4 4/6] watchdog: cortina_wdt: add support for HW WDT on CAxxxx SoCs

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:57PM -0800, Alex Nemirovsky wrote: > From: Jason Li > > Add support for hardware watchdog timer on all Cortina Access > CA family of SoCs. > > Reviewed-by: Daniel Schwierzeck > Reviewed-by: Stefan Roese > Signed-off-by: Jason Li > Signed-off-by: Alex

Re: [PATCH v4 3/6] gpio: cortina_gpio: add DM_GPIO driver for CAxxxx SoCs

2020-02-07 Thread Tom Rini
On Thu, Jan 30, 2020 at 12:34:56PM -0800, Alex Nemirovsky wrote: > From: Jason Li > > DM_GPIO based GPIO controller driver for CA SoCs. > This driver support multiple CPU architectures and > Cortina Access SoC platforms. > > Reviewed-by: Daniel Schwierzeck > Signed-off-by: Jason Li >

[PATCH 1/1] efi_loader: fix efi_install_fdt() description

2020-02-07 Thread Heinrich Schuchardt
In the function description use the correct parameter name. Mention EFI_FDT_USE_INTERNAL. Signed-off-by: Heinrich Schuchardt --- cmd/bootefi.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/bootefi.c b/cmd/bootefi.c index 56bdff33c6..a030d14dc8 100644 ---

Re: [U-Boot] Sharing a hardware lab

2020-02-07 Thread Simon Glass
Hi Tom, On Fri, 7 Feb 2020 at 15:22, Tom Rini wrote: > > On Wed, Feb 05, 2020 at 11:21:41AM -0700, Stephen Warren wrote: > > On 2/5/20 7:10 AM, Simon Glass wrote: > > > Hi Tom, > > > > > > On Wed, 4 Dec 2019 at 15:30, Tom Rini wrote: > > > > > > > > On Fri, Nov 29, 2019 at 09:23:43PM -0700,

Please pull u-boot-x86

2020-02-07 Thread Bin Meng
Hi Tom, This PR includes the following changes for v2020.04: - Move P2SB from Apollo Lake to a more generic location - Add a function to find a device by drvdata in DM core - Enhancement of DM IRQ uclass driver - Add a clock driver for Intel devices - Add support for ACPI general-purpose events

Something wrong with gitlab.denx.de

2020-02-07 Thread Bin Meng
Hello, It looks there is something wrong with gitlab.denx.de. When accessing either sites below: * https://gitlab.denx.de/u-boot/custodians/u-boot-x86 * https://gitlab.denx.de/u-boot/u-boot Chrome gives me: Your connection is not private Attackers might be trying to steal your information

[PATCH v3][ 3/6] board: tbs2910: move CONFIG_BOOTCOMMAND from header to defconfig

2020-02-07 Thread Denis 'GNUtoo' Carikli
This doesn't affect the size of the image: with arm-linux-gnueabi-gcc 9.2.0-1 from the Parabola GNU/Linux distribution, the text, data, bss and total sizes remain unchanged. Signed-off-by: Denis 'GNUtoo' Carikli --- configs/tbs2910_defconfig | 2 ++ include/configs/tbs2910.h | 8 2

[PATCH v3][ 1/6] board: tbs2910: disable loadb and loads commands

2020-02-07 Thread Denis 'GNUtoo' Carikli
The loadb and loads commands are not needed for booting. There are also more reliable and faster alternatives to loadb and loads that can be used with the current configuration. As that the resulting image is already very close to the size limit, removing the loadb and loads commands shouldn't

[PATCH v3][ 5/6] board: tbs2910: Enable distro_boot support.

2020-02-07 Thread Denis 'GNUtoo' Carikli
This keeps the compatibility with the old bootcmd. The fdtfile environment variable also needed to be set to imx6q-tbs2910.dtb to enable booting mainline kernels otherwise with extlinux.conf it tries to load mx6-tbs2910.dtb instead. With arm-linux-gnueabi-gcc 9.2.0-1 from the Parabola GNU/Linux

[PATCH v3][ 4/6] board: tbs2910: enable CONFIG_DISTRO_DEFAULTS

2020-02-07 Thread Denis 'GNUtoo' Carikli
The side effect is that it increase the size of the resultimg image, which is already very close to the size limit. With arm-linux-gnueabi-gcc 9.2.0-1 from the Parabola GNU/Linux distribution, we have the following size increase: - text: 8744 bytes - data: 132 bytes - bss: 60 bytes - total: 8936

[PATCH v3][ 6/6] boards: tbs2910: add README

2020-02-07 Thread Denis 'GNUtoo' Carikli
The installation documentation make use of the "BOOT/UPDATE" mechanism that is documented in the TBS2910 OS installation manual[1]. This is to make sure that they work on the different PCB revisions of this board. There is also a boot configuration switch (SW6) but the one described in the v2.1

[PATCH v3][ 2/6] board: tbs2910: disable CONFIG_GZIP

2020-02-07 Thread Denis 'GNUtoo' Carikli
As that the resulting image is already very close to the size limit, and that CONFIG_GZIP is not strictly required, removing it shouldn't hurt. With arm-linux-gnueabi-gcc 9.2.0-1 from the Parabola GNU/Linux distribution we have the following size reduction: - text: 9752 - data: 0 - bss: 16 -