Re: [U-Boot] How to test new bootloaders on Jetson TX1? - ATF

2018-02-16 Thread Varun Wadekar
Sounds good. I reviewed the ATF change upstream. Looks good. From: Andreas Färber Sent: Friday, February 16, 2018 7:34 PM To: Varun Wadekar Cc: Tom Warren; Jonathan Hunter; linux-te...@vger.kernel.org; U-Boot; Alexander Graf; Mian Yousaf Kaukab

Re: [U-Boot] How to test new bootloaders on Jetson TX1? - ATF

2018-02-16 Thread Andreas Färber
Am 16.02.2018 um 07:18 schrieb Varun Wadekar: > Yes. That's a custom SMC we have for some non-L4T uses. It has not been > upstreamed yet. > > You can add dummy handling in tegra_sip_calls.c to move forward. Thanks, on my 1.4 based branch I succeeded to boot into Nvidia U-Boot with the following

[U-Boot] [PATCH 4/4] ARM: rmobile: Fix broken reset code on Porter

2018-02-16 Thread Marek Vasut
The 'reset' command did not work on Porter because the reset code was accessing the wrong PMIC address over broken I2C bus driver. Replace the code with DM-aware code and fix up the PMIC address. This makes the 'reset' command work again. Signed-off-by: Marek Vasut

[U-Boot] [PATCH 2/4] ARM: dts: rmobile: Enable I2C6 on Porter

2018-02-16 Thread Marek Vasut
Enable I2C6 bus on Porter to access the PMIC , ie. to reset the board. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- arch/arm/dts/r8a7791-porter.dts | 5 + 1 file changed, 5 insertions(+) diff --git

[U-Boot] [PATCH 3/4] ARM: rmobile: Replace SH I2C with IIC on Porter

2018-02-16 Thread Marek Vasut
Get rid of the SH I2C driver on Porter and enable the IIC driver instead . The old SH I2C is completely broken on Porter anyway and the DM/DT capable IIC driver allows access to the PMIC too. Use the DM/DT capable driver instead. Signed-off-by: Marek Vasut Cc:

[U-Boot] [PATCH 1/4] i2c: rcar_iic: Allow IIC on RCar Gen2

2018-02-16 Thread Marek Vasut
The IIC on Gen2 is compatible with this driver as well, allow it. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- drivers/i2c/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/Kconfig

[U-Boot] [PATCH] ARM: rmobile: Set FDT/initramfs limits on Porter

2018-02-16 Thread Marek Vasut
Set those limits to inform U-Boot about FDT and initramfs placement. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- include/configs/porter.h | 4 1 file changed, 4 insertions(+) diff --git a/include/configs/porter.h

[U-Boot] [PATCH] ARM: rmobile: Enable CONFIG_LOADADDR on Gen2

2018-02-16 Thread Marek Vasut
This sets the $loadaddr variable, which is used ie. by tftp/dhcp command and many others. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- include/configs/rcar-gen2-common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[U-Boot] [PATCH] ARM: rmobile: Enable convenient commands on Porter

2018-02-16 Thread Marek Vasut
Enable cache and time commands, which are convenience tools for doing benchmarks and various boot tests. Also enable FIT support for booting fitImage. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- configs/porter_defconfig | 4 +++- 1

Re: [U-Boot] [PATCH 7/7] net: sh_eth: Add DM and DT support

2018-02-16 Thread Marek Vasut
On 02/16/2018 11:23 PM, Joe Hershberger wrote: > On Wed, Jan 24, 2018 at 4:21 PM, Marek Vasut wrote: >> Add DM capable code into the SH ethernet driver and support probing >> both from DT and pdata. The legacy non-DM, non-DT support is retained >> as there are still systems

[U-Boot] [PATCH 4/4] net: sh_eth: Fix DT base address fetching

2018-02-16 Thread Marek Vasut
Drop the whole map/unmap_physmem stuff and just use the address already obtained from DT in ofdata_to_platdata(), instead of repeating that, wrongly, in probe. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Joe Hershberger

[U-Boot] [PATCH 2/4] net: sh_eth: Return directly from sh_eth_recv_start

2018-02-16 Thread Marek Vasut
Drop the len variable, it's useless. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Joe Hershberger --- drivers/net/sh_eth.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git

[U-Boot] [PATCH 3/4] net: sh_eth: Fix checkpatch warning

2018-02-16 Thread Marek Vasut
Fix minor checkpatch warning about udelay(3000) being too long and should be replaced by mdelay(3). Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Joe Hershberger --- drivers/net/sh_eth.c | 2 +- 1 file

[U-Boot] [PATCH 1/4] net: sh_eth: Zap port variable

2018-02-16 Thread Marek Vasut
Inline this variable which is quite useless. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Joe Hershberger --- drivers/net/sh_eth.c | 30 ++ 1 file changed, 14 insertions(+), 16

Re: [U-Boot] [PATCH] ARM: dts: Add support for stm32f746-evaluation board support

2018-02-16 Thread Vikas MANOCHA
Hi, <-Original Message- ; Patrick DELAUNAY ; Christophe KERELLO <; Christophe PRIOUZEAU < http://www.st.com/en/evaluation-tools/stm32746g-eval.html < Acked-by: Vikas Manocha

[U-Boot] [PATCH] ARM: rmobile: Reset ethernet PHY

2018-02-16 Thread Marek Vasut
Toggle the PHY reset GPIO to bring the ethernet PHY out of reset properly. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- NOTE: This should be moved to the SH ethernet driver, but it's quite late in the cycle, so this is something

[U-Boot] [PATCH] ARM: dts: rmobile: Move the u-boot, dm-pre-reloc into u-boot DTS on porter

2018-02-16 Thread Marek Vasut
Fix ommission where the u-boot,dm-pre-reloc DT bit was pulled into the common DT, not the U-Boot specific DT part. Move it to U-Boot DT part. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- arch/arm/dts/r8a7791-porter-u-boot.dts | 4

Re: [U-Boot] [Patch] for drivers/net/phy/smsc.c to support SMSC LAN8741

2018-02-16 Thread Joe Hershberger
Hi Arno, Welcome. On Thu, Jan 25, 2018 at 6:08 AM, Arno Steffens wrote: > Hello, > Be mild with me - my first patch to u-boot. Generally this is the type of thing you add after "---" in the message body, so that it won't be included in the commit log, only in the email. Please

Re: [U-Boot] [PATCH 7/7] net: sh_eth: Add DM and DT support

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:21 PM, Marek Vasut wrote: > Add DM capable code into the SH ethernet driver and support probing > both from DT and pdata. The legacy non-DM, non-DT support is retained > as there are still systems in the tree which are not DM or DT capable. > >

Re: [U-Boot] [PATCH 5/7] net: sh_eth: Split sh_eth_init

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:21 PM, Marek Vasut wrote: > Split sh_eth_init() function into smaller chunks, which can > be called from both DM and non-DM code while handling the > specifics of both configurations. > > Signed-off-by: Marek Vasut >

Re: [U-Boot] [PATCH 6/7] net: sh_eth: Clump legacy functions together

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:21 PM, Marek Vasut wrote: > Move the legacy functions around, so that they can be wrapped in a > massive ifdef CONFIG_DM_ETH once DM support is added. No functional > change. > > Signed-off-by: Marek Vasut > Cc:

Re: [U-Boot] [PATCH 4/7] net: sh_eth: Separate out MAC address programming

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:20 PM, Marek Vasut wrote: > Pull out the code for writing MAC address into the NIC into a > separate function, so it can be reused by both DM and non-DM > code. This is done in preparation for DM support, which handles > MAC address programming

Re: [U-Boot] [PATCH 3/7] net: sh_eth: Split sh_eth_recv

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:20 PM, Marek Vasut wrote: > Split sh_eth_recv into two functions, one which checks whether > a packet was received and one which handles the received packet. > This is done in preparation for DM support, which handles these > two parts separately.

Re: [U-Boot] [PATCH 2/7] net: sh_eth: Pass sh_eth_dev around

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:20 PM, Marek Vasut wrote: > Pass sh_eth_dev structure around instead of eth_device, since the > later is specific to the legacy networking support. This change is > done in preparation for the DM addition. > > Signed-off-by: Marek Vasut

Re: [U-Boot] [PATCH 1/7] net: sh_eth: Unify CONFIG_R8A779[01234] as CONFIG_RCAR_GEN2

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:20 PM, Marek Vasut wrote: > Use the common RCAR_GEN2 config option instead of enumerating > each SoC and having a lengthy ifdef clause. No functional change. > > Signed-off-by: Marek Vasut > Cc: Nobuhiro Iwamatsu

Re: [U-Boot] [PATCH] net: ravb: staticize ravb_start

2018-02-16 Thread Joe Hershberger
On Wed, Jan 24, 2018 at 4:20 PM, Marek Vasut wrote: > Cosmetic fix, make ravb_start() static. > > Signed-off-by: Marek Vasut > Cc: Nobuhiro Iwamatsu > Cc: Joe Hershberger Acked-by: Joe

Re: [U-Boot] [PATCH] net: Remove Xilinx ll_temac driver

2018-02-16 Thread Joe Hershberger
On Fri, Feb 16, 2018 at 1:44 AM, Michal Simek wrote: > ll_temac driver was used by Xilinx Microblaze big endian and > Xilinx ppc405/ppc440 SoCs. > > ppc support was removed by: "powerpc: remove 4xx support" > (sha1: 98f705c9cefdfdba62c069821bbba10273a0a8ed) > and

Re: [U-Boot] [PATCH] net: e1000: Fix e1000_igb semaphore handling

2018-02-16 Thread Joe Hershberger
On Thu, Feb 15, 2018 at 1:55 AM, Bernhard Messerklinger wrote: > Fix commit f1bcad22dd19 ("net: e1000: add support for writing to > EEPROM"). > > Signed-off-by: Bernhard Messerklinger > Acked-by: Joe

Re: [U-Boot] [RFC] Make U-Boot log great again

2018-02-16 Thread Robert Nelson
On Fri, Feb 16, 2018 at 1:01 PM, Sam Protsenko wrote: > Hi guys, > > TL;DR This is a suggestion about fixing U-Boot log, which has got > worse recently. > > Right now U-Boot and SPL logs are cluttered with bogus warnings like > these (on X15 board, but I'm pretty sure

Re: [U-Boot] [RFC PATCH] net: gem: Add support for more PHYs on MDIO bus

2018-02-16 Thread Joe Hershberger
On Wed, Feb 7, 2018 at 1:46 AM, Michal Simek wrote: > On 6.2.2018 22:11, Joe Hershberger wrote: >> On Mon, Feb 5, 2018 at 1:17 AM, Michal Simek wrote: >>> Hi Joe, >>> >>> On 2.2.2018 20:35, Joe Hershberger wrote: Hi Michal, On Thu,

[U-Boot] [RFC] Make U-Boot log great again

2018-02-16 Thread Sam Protsenko
Hi guys, TL;DR This is a suggestion about fixing U-Boot log, which has got worse recently. Right now U-Boot and SPL logs are cluttered with bogus warnings like these (on X15 board, but I'm pretty sure it should appear on many others): Loading Environment from FAT... *** Warning - bad

[U-Boot] [U-Boot PATCH 2/2] defconfig: k2l_hs_evm: Add k2l_hs_evm_defconfig

2018-02-16 Thread Madan Srinivas
Adds a dedicated defconfig to build TI K2L secure devices. Created from the k2l_evm_defconfig and removes support for SPL, as SPL is not supported on K2 HS devices. Corrects SYS_TEXT_BASE for HS devices. Also adds TI_SECURE_DEVICE and FIT_IMAGE_POST_PROCESS to include support for secure image

[U-Boot] [U-Boot PATCH 1/2] configs: k2l: Updates u-boot env to install secure boot monitor

2018-02-16 Thread Madan Srinivas
This patch updates the default u-boot env for K2L HS devices to install the secure boot monitor and load the fitImage during boot. Signed-off-by: Madan Srinivas --- include/configs/k2l_evm.h | 9 + 1 file changed, 9 insertions(+) diff --git a/include/configs/k2l_evm.h

[U-Boot] [U-Boot PATCH 0/2] Adds support for secure boot on TCI6630K2L HS devices

2018-02-16 Thread Madan Srinivas
This series adds support for the secure Lammar (K2L) SoC. It defines a new defconfig file for K2L HS, based on the GP K2L defconfig and updates the u-boot default env variables to install the secure boot-monitor on startup. Madan Srinivas (2): configs: k2l: Updates u-boot env to install

Re: [U-Boot] [U-Boot, 07/14] clk: rockchip: Init CPLL 600M for rk322x

2018-02-16 Thread Philipp Tomsich
> The gmac for integrated phy need 50M clock, it seems that only > come from CPLL 600M, the GPLL is not suitable. > > Signed-off-by: David Wu > --- > > arch/arm/include/asm/arch-rockchip/cru_rk322x.h | 1 + > drivers/clk/rockchip/clk_rk322x.c | 11

Re: [U-Boot] [U-Boot, 10/14] ARM: dts: rockchip: Enable integrated phy support for rk3229-evb

2018-02-16 Thread Philipp Tomsich
> In fact, the evb-rk3229 is default supported the integrated phy, > not need to change any hardware. So it is better to enbale it and > disable external 1000M phy. > > Signed-off-by: David Wu > --- > > arch/arm/dts/rk3229-evb.dts | 22 ++ > 1 file

Re: [U-Boot] [U-Boot, 08/14] clk: rockchip: Add SCLK_MAC_SRC clock rate setup

2018-02-16 Thread Philipp Tomsich
> The SCLK_MAC_SRC is the same as the SCLK_MAC, it is requested > by the integrated phy usuage. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk322x.c | 1 + > 1 file changed, 1 insertion(+) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 05/14] cllk: rockchip: Change the defined name for CONFIG_RESET_ROCKCHIP

2018-02-16 Thread Philipp Tomsich
> It seems that the "CONFIG_IS_ENABLED(CONFIG_RESET_ROCKCHIP)" always > should not been active. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk3036.c | 2 +- > drivers/clk/rockchip/clk_rk322x.c | 4 ++-- > drivers/clk/rockchip/clk_rk3288.c | 2 +- >

Re: [U-Boot] [U-Boot, 12/14] ARM: dts: rockchip: Add gmac2phy dts node for rk3328

2018-02-16 Thread Philipp Tomsich
> The gmac2phy is connected with integrated with phy, we can > fix the phy node at dtsi level. > > Signed-off-by: David Wu > --- > > arch/arm/dts/rk3328.dtsi | 35 +++ > 1 file changed, 35 insertions(+) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 04/14] net: rockchip: Add integrated phy for rk3228 and rk3328

2018-02-16 Thread Philipp Tomsich
> The rk3228 and rk3328 Socs both support integrated phy, implement > their power up function to support it. > > Signed-off-by: David Wu > --- > > drivers/net/gmac_rockchip.c | 122 > > 1 file changed, 122 insertions(+) >

Re: [U-Boot] [U-Boot, 11/14] clk: rk3328: Implement the gmac2phy clock assignment

2018-02-16 Thread Philipp Tomsich
> Implement the setting parent and rate for gmac2phy clock, and > add internal pll div set for gmac2phy clk. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk3328.c | 86 > +++ > 1 file changed, 86 insertions(+) >

Re: [U-Boot] [U-Boot, 13/14] ARM: dts: rockchip: Enable gmac2phy feature for rk3328-evb

2018-02-16 Thread Philipp Tomsich
> In fact, the rk3328-evb is default supported the integrated phy, > not need to change any hardware. So it is better to enbale it and > disable external 1000M phy. > > Signed-off-by: David Wu > --- > > arch/arm/dts/rk3328-evb.dts | 10 ++ > 1 file changed, 10

Re: [U-Boot] [U-Boot, 09/14] ARM: dts: rockchip: Add integrated phy reset and clock for rk322x

2018-02-16 Thread Philipp Tomsich
> To support the integrated phy for rk322x, add their reset and clock > property at dtsi level. > > Signed-off-by: David Wu > --- > > arch/arm/dts/rk322x.dtsi | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot,03/14] net: rockchip: Add integrated phy ops

2018-02-16 Thread Philipp Tomsich
> Some rockchio Socs have integrated phy inside, to support it, > add the integrated phy ops. > > Signed-off-by: David Wu > --- > > drivers/net/gmac_rockchip.c | 29 + > 1 file changed, 29 insertions(+) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 06/14] clk: rockchip: fix the gmac selection of pll source for rk322x

2018-02-16 Thread Philipp Tomsich
> There is a wrong selection for gmac pll source, fix it. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk322x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 14/14] rockchip: defconfig: Enable CONFIG_RESET_ROCKCHIP for rk3329-evb and rk3328-evb

2018-02-16 Thread Philipp Tomsich
> The integtated phy inside the rk3229 and rk3328 need the reset > request for power up. > > Signed-off-by: David Wu > --- > > configs/evb-rk3229_defconfig | 1 + > configs/evb-rk3328_defconfig | 1 + > 2 files changed, 2 insertions(+) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 5/6] rockchip: clk: rk3328: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rk3328.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 4/6] rockchip: clk: rk3288: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rk3288.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 09/14] ARM: dts: rockchip: Add integrated phy reset and clock for rk322x

2018-02-16 Thread Philipp Tomsich
> To support the integrated phy for rk322x, add their reset and clock > property at dtsi level. > > Signed-off-by: David Wu > --- > > arch/arm/dts/rk322x.dtsi | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > Reviewed-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 1/6] rockchip: clk: rk3036: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rk3036.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 2/6] rockchip: clk: rk3188: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rk3188.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 06/14] clk: rockchip: fix the gmac selection of pll source for rk322x

2018-02-16 Thread Philipp Tomsich
> There is a wrong selection for gmac pll source, fix it. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk322x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 14/14] rockchip: defconfig: Enable CONFIG_RESET_ROCKCHIP for rk3329-evb and rk3328-evb

2018-02-16 Thread Philipp Tomsich
> The integtated phy inside the rk3229 and rk3328 need the reset > request for power up. > > Signed-off-by: David Wu > --- > > configs/evb-rk3229_defconfig | 1 + > configs/evb-rk3328_defconfig | 1 + > 2 files changed, 2 insertions(+) > Reviewed-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 08/14] clk: rockchip: Add SCLK_MAC_SRC clock rate setup

2018-02-16 Thread Philipp Tomsich
> The SCLK_MAC_SRC is the same as the SCLK_MAC, it is requested > by the integrated phy usuage. > > Signed-off-by: David Wu > --- > > drivers/clk/rockchip/clk_rk322x.c | 1 + > 1 file changed, 1 insertion(+) > Reviewed-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 3/6] rockchip: clk: rk322x: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rk322x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 6/6] rockchip: clk: rk1108: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > > drivers/clk/rockchip/clk_rv1108.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Philipp

Re: [U-Boot] [U-Boot, 3/6] rockchip: clk: rk322x: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > --- > > drivers/clk/rockchip/clk_rk322x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 6/6] rockchip: clk: rk1108: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > --- > > drivers/clk/rockchip/clk_rv1108.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 2/6] rockchip: clk: rk3188: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > --- > > drivers/clk/rockchip/clk_rk3188.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 01/14] net: rockchip: Separate rmii and rgmii speed setup

2018-02-16 Thread Philipp Tomsich
> Some Socs both have rgmii and rmii interface, so we need to > separate their speed setting. > > Signed-off-by: David Wu > --- > > drivers/net/gmac_rockchip.c | 62 > +++-- > 1 file changed, 43 insertions(+), 19 deletions(-) >

Re: [U-Boot] [U-Boot, 4/6] rockchip: clk: rk3288: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > --- > > drivers/clk/rockchip/clk_rk3288.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, 1/6] rockchip: clk: rk3036: convert to use live dt

2018-02-16 Thread Philipp Tomsich
> Use live dt api to get cru base addr. > > Signed-off-by: Kever Yang > --- > > drivers/clk/rockchip/clk_rk3036.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot,1/2] rockchip: rk3288: Add TPL_LDSCRIPT

2018-02-16 Thread Philipp Tomsich
> Due to size limitations in SPL by adding falcon mode, > rk3288 support TPL. In order to not overlap SPL_TEXT_BASE > add TPL_TEXT_BASE with u-boot-tpl.lds that intern call > u-boot-spl.lds with proper TEXT_BASE values. > > Signed-off-by: Jagan Teki > --- >

Re: [U-Boot] [U-Boot,2/2] rockchip: rk3288: Fix TPL_TEXT_BASE

2018-02-16 Thread Philipp Tomsich
> rockchip boot0 add 4 bytes data (0xeaff) at beginning > of executable(0x800) in order to make generic and compatible > boot0 for all platforms and the resulting executable will be > input to mkimage and the output of mkimage with initial > 4 bytes will overwritten by 'spl_hdr' > > Since the

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

2018-02-16 Thread Marek Vasut
The following changes since commit 32fe36574ea5e6ea55313e16547b98a984af7767: Merge git://git.denx.de/u-boot-arc (2018-02-15 14:07:04 -0500) are available in the Git repository at: git://git.denx.de/u-boot-sh.git master for you to fetch changes up to

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

2018-02-16 Thread Marek Vasut
The following changes since commit 0c502b6c176281a096a23803e517b19e964485f1: configs: Resync with savedefconfig (2018-02-14 21:34:50 -0500) are available in the Git repository at: git://git.denx.de/u-boot-socfpga.git master for you to fetch changes up to

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

2018-02-16 Thread Marek Vasut
The following changes since commit 0c502b6c176281a096a23803e517b19e964485f1: configs: Resync with savedefconfig (2018-02-14 21:34:50 -0500) are available in the Git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to

[U-Boot] [PATCH v3 00/11] Convert bootcount drivers to Kconfig

2018-02-16 Thread Alex Kiernan
This patch set converts bootcount drivers to Kconfig, it also merges CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT. Green Travis build: https://travis-ci.org/akiernan/u-boot/builds/342294699 This patch has been applied on top of u-boot/master: SHA1: f116634cd17952a18efb7c8cc6f6a7ef42dd4b8b

[U-Boot] [PATCH v3 09/11] Migrate generic bootcount to Kconfig

2018-02-16 Thread Alex Kiernan
Make generate boot counter selected in the same way as other boot count drivers Reviewed-by: Lukasz Majewski Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None drivers/bootcount/Kconfig | 11 +++ drivers/bootcount/Makefile

[U-Boot] [PATCH v3 06/11] Convert CONFIG_BOOTCOUNT_I2C to Kconfig

2018-02-16 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_I2C Signed-off-by: Alex Kiernan Reviewed-by: Lukasz Majewski --- Changes in v3: None Changes in v2: None README | 6 -- configs/ids8313_defconfig| 1 +

[U-Boot] [PATCH v3 08/11] Integrate AT91 bootcount driver

2018-02-16 Thread Alex Kiernan
Integrate Boot counter for Atmel AT91SAM9XE into Kconfig Reviewed-by: Lukasz Majewski Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None README | 4 drivers/bootcount/Kconfig | 5 +

[U-Boot] [PATCH v3 10/11] Migrate CONFIG_BOOTCOUNT_ALEN to Kconfig

2018-02-16 Thread Alex Kiernan
Convert CONFIG_BOOTCOUNT_ALEN to Kconfig Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None drivers/bootcount/Kconfig| 9 - include/configs/ids8313.h| 1 - scripts/config_whitelist.txt | 1 - 3 files changed, 8 insertions(+), 3

[U-Boot] [PATCH v3 05/11] Convert CONFIG_BOOTCOUNT_RAM to Kconfig

2018-02-16 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_RAM Signed-off-by: Alex Kiernan Reviewed-by: Lukasz Majewski --- Changes in v3: None Changes in v2: None README | 2 -- configs/km_kirkwood_128m16_defconfig | 1 +

Re: [U-Boot] Crash observed while running U-Boot on LS1088 SD-boot

2018-02-16 Thread York Sun
Ashish, Please check if this fixes it https://patchwork.ozlabs.org/patch/870653/ York On 02/16/2018 02:57 AM, Ashish Kumar wrote: > Hello all, > > I am seeing u-boot crash, while I run the latest u-boot on LS1088 for > SD-Boot(ls1088aqds_sdcard_qspi_defconfig). > There were some changes

[U-Boot] [PATCH v3 02/11] Prepare for multiple bootcount drivers

2018-02-16 Thread Alex Kiernan
Reviewed-by: Lukasz Majewski Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None drivers/bootcount/Kconfig | 25 +++-- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/drivers/bootcount/Kconfig

[U-Boot] [PATCH v3 07/11] Convert CONFIG_BOOTCOUNT_EXT to Kconfig

2018-02-16 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_EXT Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None README | 7 --- configs/ge_b450v3_defconfig | 2 ++ configs/ge_b650v3_defconfig | 2 ++

[U-Boot] [PATCH v3 11/11] Remove CONFIG_SYS_BOOTCOUNT_SINGLEWORD

2018-02-16 Thread Alex Kiernan
Tidy up CONFIG_SYS_BOOTCOUNT_SINGLEWORD from the whitelist as there's no remaining uses of it left. Signed-off-by: Alex Kiernan --- Changes in v3: None Changes in v2: None scripts/config_whitelist.txt | 1 - 1 file changed, 1 deletion(-) diff --git

[U-Boot] [PATCH v3 01/11] Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT

2018-02-16 Thread Alex Kiernan
CONFIG_BOOTCOUNT was only used in mx53ppd, merge it with CONFIG_BOOTCOUNT_LIMIT Signed-off-by: Alex Kiernan Reviewed-by: Lukasz Majewski Reviewed-by: Ian Ray --- Changes in v3: - Improve commit messages - Split rename of

[U-Boot] [PATCH v3 04/11] Convert CONFIG_BOOTCOUNT_ENV to Kconfig

2018-02-16 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_ENV Signed-off-by: Alex Kiernan Reviewed-by: Lukasz Majewski --- Changes in v3: None Changes in v2: None README | 11 --- configs/draco_defconfig

[U-Boot] [PATCH v3 03/11] Convert CONFIG_BOOTCOUNT_AM33XX to Kconfig

2018-02-16 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_AM33XX Reviewed-by: Lukasz Majewski Reviewed-by: Hannes Schmelzer Acked-by: Hannes Schmelzer Signed-off-by: Alex Kiernan

[U-Boot] [PATCH 2/3] dfu: Rename _FUNCTION_DFU to DFU_OVER_

2018-02-16 Thread Marek Vasut
Do the following to make the symbol names less confusing. sed -i "s/\([TU][^_]\+\)_FUNCTION_DFU/DFU_OVER_\1/g" \ `git grep _FUNCTION_DFU | cut -d ":" -f 1 | sort -u` Signed-off-by: Marek Vasut Cc: Lukasz Majewski --- README

[U-Boot] [PATCH] spl: Kconfig: Rename SPL_USBETH_SUPPORT to SPL_USB_ETHER to match with the U-boot CONFIG

2018-02-16 Thread Faiz Abbas
Rename CONFIG_SPL_USBETH_SUPPORT to CONFIG_SPL_USB_ETHER. This enables users to block text using CONFIG_IS_ENABLED() instead of resorting to #if ladders with SPL and non-SPL cases. Signed-off-by: Faiz Abbas --- arch/arm/mach-omap2/boot-common.c | 2 +-

[U-Boot] [PATCH 3/3] dfu: tftp: Fix arm64 build warnings

2018-02-16 Thread Marek Vasut
Fix two build warnings when building for arm64: drivers/dfu/dfu_tftp.c: In function ‘dfu_tftp_write’: drivers/dfu/dfu_tftp.c:59:37: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] ret = dfu_write_from_mem_addr(dfu, (void *)addr, len);

[U-Boot] [UBOOT PATCH 5/6] i2c: Added Kconfig support for CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 +

[U-Boot] [UBOOT PATCH 6/6] i2c: Added kconfig support for CONFIG_ZYNQ_I2C0 and CONFIG_ZYNQ_I2C1

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_ZYNQ_I2C0 and CONFIG_ZYNQ_I2C1 and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 +

[U-Boot] [UBOOT PATCH 2/2] microblaze: wdt: Added Kconfig support for CONFIG_XILINX_TB_WATCHDOG

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_XILINX_TB_WATCHDOG and enabled it in respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/microblaze-generic_defconfig | 1 + drivers/watchdog/Kconfig

[U-Boot] [PATCH V2 1/3] dfu: Fix up the Kconfig mess

2018-02-16 Thread Marek Vasut
Clean up the screaming mess of configuration options that DFU is. It was impossible to configure DFU such that TFTP is enabled and USB is not, this patch fixes that and assures that DFU TFTP and DFU USB can be enabled separatelly and that the correct pieces of code are compiled in. Signed-off-by:

Re: [U-Boot] [PATCH v2 00/13] LS1012A PFE driver patch series

2018-02-16 Thread Anji Jagarlmudi
Hi York, > > I think you should update your copyright year. Is it right to add > > 2015-2016 copyright year? Did you have these files then? Yes, these files were exit during that time. In fact these files were exist since 2011 with Mindspeed copyright. We did modifications for LS1012A and using

[U-Boot] [UBOOT PATCH 2/2] spi: Added Kconfig support for SYS_ZYNQ_SPI_WAIT and XILINX_SPI_IDLE_VAL

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_SPI_WAIT and CONFIG_XILINX_SPI_IDLE_VAL and set default value. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/spi/Kconfig | 12

[U-Boot] [UBOOT PATCH 1/2] qspi: Added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT and set it to default value 10 milliseconds. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/spi/Kconfig | 6 ++ drivers/spi/zynq_qspi.c | 3 --- 2

[U-Boot] [UBOOT PATCH 3/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SLAVE

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SLAVE and set it default to 0. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 7 +++ include/configs/xilinx_zynqmp.h | 1 -

[U-Boot] [UBOOT PATCH 0/2] microblaze: Moved U-boot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This seris of patch moved microblaze u-boot headers to the kconfig and enabled it in respective defconfig. These are the configs: -CONFIG_XILINX_GPIO -CONFIG_XILINX_TB_WATCHDOG Vipul Kumar (2): microblaze: Added Kconfig support for CONFIG_XILINX_GPIO microblaze: wdt: Added Kconfig support for

[U-Boot] [UBOOT PATCH 4/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SPEED

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ_SPEED and set it to default value 10. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 7 +++ include/configs/xilinx_zynqmp.h | 1 -

[U-Boot] [UBOOT PATCH 3/4] arm: zynq: fpga: Added Kconfig support for CONFIG_FPGA_ZYNQPL

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_FPGA_ZYNQPL. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/fpga/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig

[U-Boot] [UBOOT PATCH 0/6] i2c: Moved i2c u-boot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This series of patch moved i2c u-boot headers to the Kconfig and enabled in respective defconfig. These are the configs: -CONFIG_SYS_I2C_ZYNQ -CONFIG_SYS_I2C_ZYNQ_SLAVE -CONFIG_SYS_I2C_ZYNQ_SPEED -CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET -CONFIG_ZYNQ_I2C0 -CONFIG_ZYNQ_I2C1 Vipul Kumar (6): i2c: Added

[U-Boot] [UBOOT PATCH 0/2] spi: Moved spi u-bbot headers to Kconfig

2018-02-16 Thread Vipul Kumar
This seris of patch moved spi headers to Kconfig. These are the configs: -CONFIG_SYS_ZYNQ_SPI_WAIT -CONFIG_XILINX_SPI_IDLE_VAL -CONFIG_SYS_ZYNQ_QSPI_WAIT Vipul Kumar (2): qspi: Added Kconfig support for CONFIG_SYS_ZYNQ_QSPI_WAIT spi: Added Kconfig support for SYS_ZYNQ_SPI_WAIT and

[U-Boot] [UBOOT PATCH 1/6] i2c: Added Kconfig support for CONFIG_SYS_I2C_ZYNQ

2018-02-16 Thread Vipul Kumar
This patch added Kconfig support for CONFIG_SYS_I2C_ZYNQ. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- drivers/i2c/Kconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig

[U-Boot] [UBOOT PATCH 2/6] i2c: Enabled CONFIG_SYS_I2C_ZYNQ in the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch enabled CONFIG_SYS_I2C_ZYNQ in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/topic_miami_defconfig | 1 +

[U-Boot] [UBOOT PATCH 2/4] fpga: Added CONFIG_FPGA_SPARTAN3 in the the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch added CONFIG_FPGA_SPARTAN3 in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/apf27_defconfig | 1 + configs/astro_mcf5373l_defconfig | 1 + configs/mt_ventoux_defconfig |

[U-Boot] [UBOOT PATCH 4/4] arm: zynq: fpga: Added CONFIG_FPGA_ZYNQPL in the respective defconfig

2018-02-16 Thread Vipul Kumar
This patch added CONFIG_FPGA_ZYNQPL in the respective defconfig. Signed-off-by: Vipul Kumar Signed-off-by: Siva Durga Prasad Paladugu --- configs/syzygy_hub_defconfig | 1 + configs/topic_miami_defconfig | 1 +

  1   2   >