Re: [U-Boot] [PATCH 2/2] arm: dts: ficus: Enable booting from eMMC when using SPL

2019-05-26 Thread Kever Yang
On 05/20/2019 11:46 PM, Manivannan Sadhasivam wrote: > This commits enables booting from eMMC when using SPL on 96Boards > Ficus board by adding SDHCI to boot order. Since the SDHCI driver > already has the reloc flag, this works straightaway. > > Signed-off-by: Manivannan Sadhasivam Reviewed-b

Re: [U-Boot] [PATCH 1/2] arm: dts: rock960: Enable booting from eMMC when using SPL

2019-05-26 Thread Kever Yang
On 05/20/2019 11:46 PM, Manivannan Sadhasivam wrote: > This commits enables booting from eMMC when using SPL on 96Boards > Rock960 board by adding SDHCI to boot order. Since the SDHCI driver > already has the reloc flag, this works straightaway. > > Signed-off-by: Manivannan Sadhasivam Reviewed

Re: [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks

2019-05-26 Thread Kever Yang
On 05/07/2019 04:58 PM, Christoph Muellner wrote: > This patch adds the rate for UART1 and UART3 the same way > as already implemented for UART0 and UART2. > > This is required for boards, which have their console output > on these UARTs. > > Signed-off-by: Christoph Muellner Reviewed-by: Kever

Re: [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.

2019-05-26 Thread Kever Yang
On 05/07/2019 04:58 PM, Christoph Muellner wrote: > The RK3399 SPL does not use a pinctrl driver to setup the UART pins. > Instead it works based on config macros, which set the base address > of the actual UART block. > > Currently the RK3399 SPL support UART0 and UART2. > This patch adds UART3

Re: [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3.

2019-05-26 Thread Kever Yang
On 05/07/2019 04:58 PM, Christoph Muellner wrote: > This patch adds the missing GRF bit definitions for UART3 on the RK3399. > > Signed-off-by: Christoph Muellner Reviewed-by: Kever Yang Thanks, - Kever > --- > > arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 4 > 1 file changed, 4 i

Re: [U-Boot] [PATCH 1/2] rk3399: Restore broken USB3 DTS description.

2019-05-26 Thread Kever Yang
On 05/07/2019 04:49 PM, Christoph Muellner wrote: > This is a partial revert of commit 0a09f2f1173d > ("rockchip: Adjust rk3399 device tree to be closer to linux"). > > Harmonizing the rk3399.dtsi with the one from Linux is a good idea. > However, this is only true if the information within that

Re: [U-Boot] [PATCH] rockchip: rk3399-puma: Reduce SPL size.

2019-05-26 Thread Kever Yang
Hi Christoph, On 05/07/2019 04:42 PM, Christoph Muellner wrote: > This commit reduces the SPL size by fixing typos in the removed property > string list, switching to the tiny versions of printf/memset and > disabling SPL_DOS/EFI_PARTITION support. > > Signed-off-by: Christoph Muellner Reviewed

Re: [U-Boot] Cannot boot mx6qsabred with 2019.07-rc2

2019-05-26 Thread Schrempf Frieder
Hi Fabio, On 23.05.19 19:45, Fabio Estevam wrote: > Hi Schrempf, > > On Thu, May 23, 2019 at 2:26 PM Schrempf Frieder > wrote: > >> As luck would have it, I needed to load a FIT via SDP today, so I came >> up with a quick patch (see below). There are probably better ways to do >> this, but it w

Re: [U-Boot] [PATCH v8 3/3] rockchip: rk3399: Add Rock PI 4 support

2019-05-26 Thread Kever Yang
Hi Jagan, On 05/25/2019 02:28 AM, Jagan Teki wrote: > On Fri, May 17, 2019 at 4:00 PM Jagan Teki wrote: >> Add initial support for Rock PI 4 board. >> >> Specification >> - Rockchip RK3399 >> - LPDDR4 >> - eMMC >> - SD card slot >> - RTL8211E 1Gbps >> - HDMI In/Out, DP, MIPI DSI/CSI >> - PCIe M.

Re: [U-Boot] [PATCH v3] board/BuR/zynq/brsmarc2: initial commit

2019-05-26 Thread Michal Simek
On 10. 05. 19 7:52, Hannes Schmelzer wrote: > This commit adds the first of a few more Xilinx ZYNQ based SoM boards. > > The SoM is based on Xilinx Zynq 7000 SoC. > Mainly vxWorks 6.9.4.x is running on the board, > doing some PLC stuff on various carrier boards. > > Signed-off-by: Hannes Schmelze

[U-Boot] [PATCH] gpio: add gpio-hog support

2019-05-26 Thread Heiko Schocher
add gpio-hog support. GPIO hogging is a mechanism providing automatic GPIO request and configuration as part of the gpio-controller's driver probe function. for more infos see: doc/device-tree-bindings/gpio/gpio.txt Signed-off-by: Heiko Schocher --- clean travis build, see: https://travis-ci.or

[U-Boot] [PATCH] video, simple_panel: add lg,lb070wv8 display

2019-05-26 Thread Heiko Schocher
add "lg,lb070wv8" display to compatible node. Signed-off-by: Heiko Schocher --- clean travis build, see: https://travis-ci.org/hsdenx/u-boot-test/builds/537359553 drivers/video/simple_panel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/simple_panel.c b/drivers/video/simple

[U-Boot] [PATCH] cmd/led: check subcommand "list" instead "l"

2019-05-26 Thread Heiko Schocher
current implementation for checking if "led list" command is called checks only if "l" is passed to the led command. This prevents switching leds with name which starts also with a "l". So check for passing "list". While at it, also fix a typo in led command usage. Signed-off-by: Heiko Schocher

[U-Boot] [PATCH] rtc: ds1307: add support for m41t11

2019-05-26 Thread Heiko Schocher
add m41t11 support in ds1307 driver. changes: - add compatible string for m41t11 - check if RTC clock is running, if not enable the clock Signed-off-by: Heiko Schocher --- clean travis build, see: https://travis-ci.org/hsdenx/u-boot-test/builds/537359553 drivers/rtc/ds1307.c | 14 +++

[U-Boot] [PATCH] arm, imx, Makefile: support CONFIG_MULTI_DTB_FIT

2019-05-26 Thread Heiko Schocher
in case CONFIG_MULTI_DTB_FIT is active, use u-boot-fit-dtb.bin. Signed-off-by: Heiko Schocher --- clean travis build, see: https://travis-ci.org/hsdenx/u-boot-test/builds/537359339 Makefile | 4 arch/arm/mach-imx/Makefile | 11 ++- 2 files changed, 14 insertions(

Re: [U-Boot] [PATCH] sunxi: move CONFIG_SPL_TEXT_BASE from *_defconfig to Kconfig

2019-05-26 Thread Maxime Ripard
On Mon, May 27, 2019 at 01:45:11AM +0100, Andre Przywara wrote: > The choice of the SPL_TEXT_BASE is not really a decision that should be > specified by each board's defconfig, as this setting is actually > dictated by the SoC's memory map and the BootROM behaviour. > > To make this obvious and red

Re: [U-Boot] [PATCH RESEND 1/1] Add ps7_init_gpl.c for Z-turn board

2019-05-26 Thread Michal Simek
Hi, On 25. 05. 19 22:46, tos...@gmail.com wrote: > From: Anton Gerasimov > > Basic (PS-only) configuration, based on the Vivado board files by > Sergiusz Bazański > > Signed-off-by: Anton Gerasimov > --- > board/xilinx/zynq/zynq-zturn/ps7_init_gpl.c | 12387 ++ > 1 file chang

Re: [U-Boot] [PATCH] mmc: implement SDHCI card detect

2019-05-26 Thread Michal Simek
On 23. 05. 19 15:54, Ibai Erkiaga wrote: > Card detect function implemented for SDHCI framework. > > Signed-off-by: Ibai Erkiaga > --- > > drivers/mmc/sdhci.c | 17 + > 1 file changed, 17 insertions(+) > > diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c > index e2bb90a..

Re: [U-Boot] [PATCH v3] riscv: Add Microchip MPFS Icicle board support

2019-05-26 Thread Padmarao Begari
Hi Lukas, On Mon, May 20, 2019 at 5:33 PM Auer, Lukas wrote: > Hi Padmarao, > > On Mon, 2019-05-13 at 16:18 +0530, Padmarao Begari wrote: > > This patch adds Microchip MPFS Icicle board support. > > For now, NS16550 serial driver is only enabled. > > The Microchip MPFS Icicle defconfig by defaul

[U-Boot] cfb_console.c: DM_VIDEO conversion questions/suggestions

2019-05-26 Thread Igor Opaniuk
Hi everyone, I've finally started looking into the cfb_console.c driver and it's conversion to DM_VIDEO after our initial discussion [1]. Unfortunately I've a bit underestimated the amount of effort that should be done, as mxsfb.c in the Linux mainline obviously pulls the whole core fb subsystem (

[U-Boot] [PATCH v1] armv8: lx2160aqds: Enable eSDHC controllers

2019-05-26 Thread Yinbo Zhu
This patch is to enable esdhc controllers for lx2160aqds Signed-off-by: Yinbo Zhu --- arch/arm/dts/fsl-lx2160a-qds.dts | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/fsl-lx2160a-qds.dts b/arch/arm/dts/fsl-lx2160a-qds.dts index 4ddeb946b7..bde8e20ddb 100644 --- a/arch/ar

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Marek Vasut
On 5/27/19 4:59 AM, Ezequiel Garcia wrote: [...] >>> I don't want to get into the DM discussion, the intention of this patch was >>> to reduce SPL size, not make room for a future increase. >> >> SPL size should not be reduced at the expense of useful functionality >> though. >> >>> That said, I a

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Ezequiel Garcia
On Sun, 26 May 2019 at 14:30, Marek Vasut wrote: > > On 5/26/19 6:18 PM, Ezequiel Garcia wrote: > > On Sun, 26 May 2019 at 12:05, Lukasz Majewski wrote: > >> > >> Hi Tom, > >> > >>> On Sun, May 26, 2019 at 01:46:53PM +0200, Lukasz Majewski wrote: > Hi Tom, > > > On Sun, May 26, 2019

Re: [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string

2019-05-26 Thread Peng Fan
> Subject: [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string > > Add TI TCA9539 compatible string for yet another I2C GPIO expander. > > Signed-off-by: Marek Vasut > Cc: Mario Six > Cc: Peng Fan > Cc: Simon Glass > --- > drivers/gpio/pca953x_gpio.c | 1 + > 1 file changed, 1 i

Re: [U-Boot] [PATCH v2] cmd: env: print a message when setting UEFI variable failed

2019-05-26 Thread AKASHI Takahiro
On Fri, May 24, 2019 at 08:38:41PM +0200, Heinrich Schuchardt wrote: > On 5/24/19 8:59 AM, AKASHI Takahiro wrote: > > Error message will alert a user that setting/deleting a variable failed. > > > > Signed-off-by: AKASHI Takahiro > > --- > > Changes in v2 (May 24, 2019) > > * change a message to "

[U-Boot] [PATCH] sunxi: move CONFIG_SPL_TEXT_BASE from *_defconfig to Kconfig

2019-05-26 Thread Andre Przywara
The choice of the SPL_TEXT_BASE is not really a decision that should be specified by each board's defconfig, as this setting is actually dictated by the SoC's memory map and the BootROM behaviour. To make this obvious and reduce the clutter in the defconfig files, let's specify the SoC constraints

Re: [U-Boot] [linux-sunxi] [PATCH] phy: sun4i-usb: Fix PHY0 routing and passby configuration for MUSB

2019-05-26 Thread André Przywara
On 17/04/2019 12:28, Jagan Teki wrote: > On Mon, Apr 15, 2019 at 1:52 PM Paul Kocialkowski > wrote: Hi, >> Le vendredi 12 avril 2019 à 14:49 +0530, Jagan Teki a écrit : >>> On Thu, Mar 14, 2019 at 4:08 PM Paul Kocialkowski >>> wrote: Recent Allwinner platforms (starting with the H3) only u

[U-Boot] [PULL] u-boot-sh/master

2019-05-26 Thread Marek Vasut
Gen3 PCIe driver + enablement on Salvator-X platforms, Gen3 recovery SPL used to reload ATF/OpTee/U-Boot instead of minimon, SDHI HS400 fixes ported from latest BSP and datasheet. The following changes since commit e1a2ed7180adeefb6164239a18249dca5701319d: Merge git://git.denx.de/u-boot-mpc83xx

[U-Boot] [PULL] u-boot-socfpga/master

2019-05-26 Thread Marek Vasut
SoCFPGA PL310 cleanup + A10 fix, A10 DT cleanup, DW GPIO fix. The following changes since commit 40920bdecc4e1b7096de6f546d7b5c2185554ba6: Merge tag 'dm-pull-22may19' of git://git.denx.de/u-boot-dm (2019-05-22 12:58:58 -0400) are available in the Git repository at: git://git.denx.de/u-boot-

Re: [U-Boot] [linux-sunxi] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread Maxime Ripard
On Sun, May 26, 2019 at 04:52:32PM +0200, Code Kipper wrote: > On Sun, 26 May 2019 at 14:13, Jernej Škrabec wrote: > > > > Hi! > > > > Dne nedelja, 26. maj 2019 ob 08:28:41 CEST je codekip...@gmail.com > > napisal(a): > > > From: Marcus Cooper > > > > > > The Beelink X2 is an STB based on the Al

Re: [U-Boot] [PATCHv2 01/11] configs: Migrate CONFIG_FMAN_ETH and some related options to Kconfig

2019-05-26 Thread Tom Rini
On Sun, May 19, 2019 at 09:52:01AM -0400, Tom Rini wrote: > Move the main symbol for Freescale Fman Ethernet controller option to > Kconfig. Also migrate the CONFIG_SYS_QE_FMAN_FW_IN_xxx macros and > rename the SPIFLASH one to follow the same format as all of the others. > To do this fully we nee

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Marek Vasut
On 5/26/19 6:18 PM, Ezequiel Garcia wrote: > On Sun, 26 May 2019 at 12:05, Lukasz Majewski wrote: >> >> Hi Tom, >> >>> On Sun, May 26, 2019 at 01:46:53PM +0200, Lukasz Majewski wrote: Hi Tom, > On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: >> Dear Marek, Tom, >

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Ezequiel Garcia
On Sun, 26 May 2019 at 12:05, Lukasz Majewski wrote: > > Hi Tom, > > > On Sun, May 26, 2019 at 01:46:53PM +0200, Lukasz Majewski wrote: > > > Hi Tom, > > > > > > > On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: > > > > > Dear Marek, Tom, > > > > > > > > > > > On 5/26/19 1:23 AM,

[U-Boot] [PATCH v5] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread codekipper
From: Marcus Cooper The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/100M ethernet port using the SoC's integrated PHY, Wifi via an sdio wifi chip, HDMI, an IR receiver, a dual colour LED and an optical S/PDIF connector. Signed

Re: [U-Boot] [linux-sunxi] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread Code Kipper
On Sun, 26 May 2019 at 14:13, Jernej Škrabec wrote: > > Hi! > > Dne nedelja, 26. maj 2019 ob 08:28:41 CEST je codekip...@gmail.com napisal(a): > > From: Marcus Cooper > > > > The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, > > 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/

Re: [U-Boot] [linux-sunxi] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread Code Kipper
On Sun, 26 May 2019 at 08:42, Jernej Škrabec wrote: > > Hi! > > Dne nedelja, 26. maj 2019 ob 08:28:41 CEST je codekip...@gmail.com napisal(a): > > From: Marcus Cooper > > > > The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, > > 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Lukasz Majewski
Hi Tom, > On Sun, May 26, 2019 at 01:46:53PM +0200, Lukasz Majewski wrote: > > Hi Tom, > > > > > On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: > > > > Dear Marek, Tom, > > > > > > > > > On 5/26/19 1:23 AM, Tom Rini wrote: > > > > > > On Sun, May 26, 2019 at 01:20:3

Re: [U-Boot] [linux-sunxi] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread Jernej Škrabec
Hi! Dne nedelja, 26. maj 2019 ob 08:28:41 CEST je codekip...@gmail.com napisal(a): > From: Marcus Cooper > > The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, > 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/100M ethernet port using the > SoC's integrated PHY, Wifi via an sd

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Tom Rini
On Sun, May 26, 2019 at 01:46:53PM +0200, Lukasz Majewski wrote: > Hi Tom, > > > On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: > > > Dear Marek, Tom, > > > > > > > On 5/26/19 1:23 AM, Tom Rini wrote: > > > > > On Sun, May 26, 2019 at 01:20:34AM +0200, Marek Vasut wrote:

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Marek Vasut
On 5/26/19 1:46 PM, Lukasz Majewski wrote: > Hi Tom, > >> On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: >>> Dear Marek, Tom, >>> On 5/26/19 1:23 AM, Tom Rini wrote: > On Sun, May 26, 2019 at 01:20:34AM +0200, Marek Vasut wrote: >> On 5/26/19 1:08 AM, Tom Ri

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Lukasz Majewski
Hi Tom, > On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: > > Dear Marek, Tom, > > > > > On 5/26/19 1:23 AM, Tom Rini wrote: > > > > On Sun, May 26, 2019 at 01:20:34AM +0200, Marek Vasut wrote: > > > >> On 5/26/19 1:08 AM, Tom Rini wrote: > > > >>> On Sun, May 26, 201

Re: [U-Boot] [PATCH v3] spl: add overall SPL size check

2019-05-26 Thread Tom Rini
On Fri, May 24, 2019 at 10:10:48PM +0200, Simon Goldschmidt wrote: > Am 24.05.2019 um 22:07 schrieb Simon Goldschmidt: > >This adds a size check for SPL that can dynamically check generated > >SPL binaries (including devicetree) for a size limit that ensures > >this image plus global data, heap and

Re: [U-Boot] [PATCH v5 11/13] m68k: add OF control support to m68k

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:51PM +0100, Angelo Dureghello wrote: > Add SUPPORT_OF_CONTROL at this stage, to avoid to break build > bisectability. > > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] [PATCH v5 10/13] configs: remove CONFIG_SYS_DSPI_XX references

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:50PM +0100, Angelo Dureghello wrote: > This patch removes CONFIG_SYS_DSPI_XX options from > include/configs "m68k" .h board files, since CTAR > registers are now set with default values in the cf_spi > driver initialization, and configurable by devicetree. > > Note,

Re: [U-Boot] [PATCH v5 06/13] drivers: spi: cf_spi: add Kconfig option

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:46PM +0100, Angelo Dureghello wrote: > This patch adds cf_spi DM Kconfig option. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature _

Re: [U-Boot] [PATCH v5 12/13] m68k: move dspi bus control functions into cf_spi.c driver

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:52PM +0100, Angelo Dureghello wrote: > This patches move dspi bus-related operations into more > proper location, to avoid the driver to declares them as externs. > > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Descri

Re: [U-Boot] [PATCH v5 09/13] drivers: serial: mcfuart: add DT support

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:49PM +0100, Angelo Dureghello wrote: > This patch adds devicetree support to the mcfuart.c driver > and removes non DM code. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP

Re: [U-Boot] [PATCH v5 05/13] configs: enable use of DT for all m68k boards

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:45PM +0100, Angelo Dureghello wrote: > Enable DT usage for all m68k boards. To provide a > working single binary, the dts has been kept as embedded. > > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP sig

Re: [U-Boot] [PATCH v5 08/13] configs: add DM_SPI config option

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:48PM +0100, Angelo Dureghello wrote: > This patch adds CONFIG_DM_SPI for all m68k boards using > the cf_spi.c driver (DSPI module). > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Descripti

Re: [U-Boot] [PATCH v5 03/13] m68k: add initial dts files for all m68k boards

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:43PM +0100, Angelo Dureghello wrote: > This patch adds basic dts files for all the m68k boards. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature __

Re: [U-Boot] [PATCH v5 13/13] m68k: add dspi chip-select support

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:53PM +0100, Angelo Dureghello wrote: > Signed-off-by: Angelo Dureghello > > Changes for v5: > - new patch Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature ___ U-Boot mailing list U-Boo

Re: [U-Boot] [PATCH v5 04/13] m68k: enabling long jumps on mcf54x5 SoCs

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:44PM +0100, Angelo Dureghello wrote: > Growing of binary size asks for long assembly jumps. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature __

Re: [U-Boot] [PATCH v5 07/13] drivers: spi: cf_spi: convert to driver model

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:47PM +0100, Angelo Dureghello wrote: > Converting to driver model and removes non-dm code. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature ___

Re: [U-Boot] [PATCH v5 02/13] m68k: architecture changes to support fdt

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:42PM +0100, Angelo Dureghello wrote: > This patch adds fdt support to the m68k architecture. > > Reviewed-by: Simon Glass > Signed-off-by: Angelo Dureghello Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature _

Re: [U-Boot] [PATCH v5 01/13] m68k: add basic set of devicetrees

2019-05-26 Thread Tom Rini
On Wed, Mar 13, 2019 at 09:46:41PM +0100, Angelo Dureghello wrote: > This patch adds a basic group of devicetrees, one for each > cpu family, including actually just uart and dspi devices, > since these are the drivers supporting devicetree (support > added in this patch-set). > > Acked-by: Jagan

Re: [U-Boot] [PULL] u-boot-mips

2019-05-26 Thread Tom Rini
On Fri, May 24, 2019 at 09:08:31PM +0200, Daniel Schwierzeck wrote: > Hi Tom, > > please pull some minor updates for MT7688 Gardena Smart Gateway. One patch > is a fix for network instability which should be merged for 2019.07. > > https://travis-ci.org/danielschwierzeck/u-boot/builds/536793504

Re: [U-Boot] Please pull u-boot-fsl-qoriq master

2019-05-26 Thread Tom Rini
On Fri, May 24, 2019 at 05:07:51AM +, Prabhakar Kushwaha wrote: > Hi Tom, > > The following changes since commit 7e090b466c5ba874d31c1bf22c3a130d516cdc32: > > Merge git://git.denx.de/u-boot-fsl-qoriq (2019-05-22 08:32:24 -0400) > > are available in the git repository at: > > git://git.

Re: [U-Boot] [PULL] u-boot-stm32 for v2019.07​ (round 4)

2019-05-26 Thread Tom Rini
On Fri, May 24, 2019 at 06:57:42AM +, Patrice CHOTARD wrote: > Hi Tom > > > This pull request include 2 series for the stm32mp157 support in U-Boot: > _ patches for stm32 support : > (http://patchwork.ozlabs.org/project/uboot/list/?series=103547) > > _ stm32mp1: ram: driver update: > (h

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Tom Rini
On Sun, May 26, 2019 at 10:22:00AM +0200, Lukasz Majewski wrote: > Dear Marek, Tom, > > > On 5/26/19 1:23 AM, Tom Rini wrote: > > > On Sun, May 26, 2019 at 01:20:34AM +0200, Marek Vasut wrote: > > >> On 5/26/19 1:08 AM, Tom Rini wrote: > > >>> On Sun, May 26, 2019 at 12:57:08AM +0200, Marek Va

Re: [U-Boot] [linux-sunxi] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread Jernej Škrabec
Hi! Dne nedelja, 26. maj 2019 ob 08:28:41 CEST je codekip...@gmail.com napisal(a): > From: Marcus Cooper > > The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, > 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/100M ethernet port using the > SoC's integrated PHY, Wifi via an sd

[U-Boot] [PATCH v4] sun8i: h3: Add support for the Beelink-x2 STB

2019-05-26 Thread codekipper
From: Marcus Cooper The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot, 2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/100M ethernet port using the SoC's integrated PHY, Wifi via an sdio wifi chip, HDMI, an IR receiver, a dual colour LED and an optical S/PDIF connector. Signed

[U-Boot] [PATCH v2 1/2] spi: imx: remove doubled pointer from mxc_spi_probe

2019-05-26 Thread Heiko Schocher
in mxc_spi_probe() plat and mxcs pointer are created: struct mxc_spi_slave *plat = bus->platdata; struct mxc_spi_slave *mxcs = dev_get_platdata(bus); which have the same value. Remove plat pointer. Signed-off-by: Heiko Schocher --- Changes in v2: - added Jagan Teki to cc - based patches on:

[U-Boot] [PATCH v2 2/2] spi: imx: work with cs greater 0

2019-05-26 Thread Heiko Schocher
currently spi mxc driver can only handle cs 0. Allow it to handle also cs > 0. Signed-off-by: Heiko Schocher --- Changes in v2: - fixed build error, seen on travis (Sorry for v1 I pushed the wrong branch to travis): drivers/spi/mxc_spi.c: In function 'mxc_spi_cs_activate': drivers/spi/mxc

[U-Boot] [PATCH v2 0/2] mxc_spi: DM improvements

2019-05-26 Thread Heiko Schocher
This series improves the mxc_spi DM support. builds clean on travis, see: https://travis-ci.org/hsdenx/u-boot-test/builds/537358053 Changes in v2: - added Jagan Teki to cc - based patches on: e1a2ed7180 - Merge git://git.denx.de/u-boot-mpc83xx - fixed build error, seen on travis (Sorry for v1

[U-Boot] [PATCH] clk: sifive: fu540-prci: align primary DT match string to the DT bindings

2019-05-26 Thread Paul Walmsley
The U-Boot PRCI driver for the SiFive FU540 uses an out-of-date DT binding string, since the U-boot PRCI driver was upstreamed before the mainline Linux kernel PRCI driver was finished. This means that the U-Boot PRCI driver won't probe when used with a DT file that is aligned to the DT bindings a

Re: [U-Boot] [PATCH] configs: Remove CONFIG_SPL_FS_EXT4 for all MX6 platforms

2019-05-26 Thread Lukasz Majewski
Dear Marek, Tom, > On 5/26/19 1:23 AM, Tom Rini wrote: > > On Sun, May 26, 2019 at 01:20:34AM +0200, Marek Vasut wrote: > >> On 5/26/19 1:08 AM, Tom Rini wrote: > >>> On Sun, May 26, 2019 at 12:57:08AM +0200, Marek Vasut wrote: > On 5/26/19 12:45 AM, Ezequiel Garcia wrote: > > On