Re: [U-Boot] [PATCH 86/93] arm: Remove brppt1_mmc board

2018-11-22 Thread Simon Glass
Hi Hannes, On Tue, 20 Nov 2018 at 04:08, Hannes Schmelzer wrote: > > > On 11/19/18 4:54 PM, Simon Glass wrote: > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > --- > > > > arch/arm/mach-omap2/Kconfig | 1 - > > b

[U-Boot] [PATCH v15 3/4] efi: Create a function to set up for running EFI code

2018-11-22 Thread Simon Glass
There is still duplicated code in efi_loader for tests and normal operation. Add a new bootefi_run_prepare() function which holds common code used to set up U-Boot to run EFI code. Make use of this from the existing bootefi_test_prepare() function, as well as do_bootefi_exec(). Also shorten a few

[U-Boot] [PATCH v15 2/4] efi: Split out test init/uninit into functions

2018-11-22 Thread Simon Glass
The functions in bootefi are very long because they mix high-level code and control with the low-level implementation. To help with this, create functions which handle preparing for running the test and cleaning up afterwards. Also shorten the awfully long variable names here. Signed-off-by: Simo

Re: [U-Boot] [PATCH] RFC: checkpatch: Add a check for tests needed for uclasses

2018-11-22 Thread Simon Glass
Hi Heinrich, On Wed, 21 Nov 2018 at 07:35, Heinrich Schuchardt wrote: > > On 11/18/18 4:16 PM, Simon Glass wrote: > > This is an experimental check for adding new uclasses without a test. > > > > I am not sure of the best way to add U-Boot-specific tests, although in > > this case, it would not f

Re: [U-Boot] [PATCH 68/93] arm: Remove am65x_evm_a53 board

2018-11-22 Thread Simon Glass
Hi Lokesh, On Mon, 19 Nov 2018 at 09:58, Lokesh Vutla wrote: > > Hi Simon, > > On 11/19/2018 9:23 PM, Simon Glass wrote: > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > Not sure if this is by mistake, but I see CONFIG_

[U-Boot] [PATCH v15 4/4] efi: Rename bootefi_test_finish() to bootefi_run_finish()

2018-11-22 Thread Simon Glass
This function can be used from do_bootefi_exec() so that we use mostly the same code for a normal EFI application and an EFI test. Rename the function and use it in both places. Signed-off-by: Simon Glass --- Changes in v15: - Add a comment about a leaked device path Changes in v14: - Go back

Re: [U-Boot] [PATCH v14 4/4] efi: Rename bootefi_test_finish() to bootefi_run_finish()

2018-11-22 Thread Simon Glass
Hi Heinrich, On Mon, 19 Nov 2018 at 12:41, Heinrich Schuchardt wrote: > > On 11/15/18 12:11 AM, Simon Glass wrote: > > This function can be used from do_bootefi_exec() so that we use mostly the > > same code for a normal EFI application and an EFI test. > > > > Rename the function and use it in b

Re: [U-Boot] [PATCH 00/93] dm: Move towards completing CONFIG_BLK migration

2018-11-22 Thread Simon Glass
Hi Tom, On Wed, 21 Nov 2018 at 08:10, Tom Rini wrote: > > On Tue, Nov 20, 2018 at 08:53:12AM -0500, Tom Rini wrote: > > On Tue, Nov 20, 2018 at 02:45:24PM +0100, Marek Vasut wrote: > > > On 11/20/2018 02:42 PM, Tom Rini wrote: > > > > On Tue, Nov 20, 2018 at 02:40:43PM +0100, Marek Vasut wrote: >

Re: [U-Boot] [U-Boot, v3, 3/4] rockchip: rk3399: Add Rock960 CE board support

2018-11-22 Thread Ezequiel Garcia
On Wed, 2018-10-03 at 21:35 +0200, Philipp Tomsich wrote: > > Add board support for Rock960 CE board from Vamrs. This board utilizes > > common Rock960 family support. > > > > Following peripherals are tested and known to work: > > * USB 2.0 > > * MMC > > > > This commit also adds DDR configurati

[U-Boot] [PATCH v15 0/4] efi_loader: Code refactoring and improvement

2018-11-22 Thread Simon Glass
This collects the patches previously sent to break up the very large functions in efi_loader into smaller pieces. Now that the other sandbox stuff is applied, perhaps it is time to apply these patches. This also adds a few new patches to fix more recent breakages. Unfortunately we still cannot ena

Re: [U-Boot] [PATCH 23/93] arm: Remove omap3_overo board

2018-11-22 Thread Simon Glass
On Tue, 20 Nov 2018 at 06:20, Andrew C. Smith wrote: > > Please hold off on the removal. I just became aware of this. We will get > the board updated. > Thank you, Andrew. - Simon ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/li

Re: [U-Boot] [PATCH 62/93] arm: Remove dh_imx6 board

2018-11-22 Thread Simon Glass
Hi Ludwig, On Tue, 20 Nov 2018 at 05:15, Ludwig Zenz wrote: > > On 19.11.2018 16:53, Simon Glass wrote: > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > Hi Simon, > > CONFIG_DM_BLK does not exist. Did you mean CONFIG_BLK? > Yes that's right. > I didn't

Re: [U-Boot] [PATCH 70/93] arm: Remove ap121 board

2018-11-22 Thread Simon Glass
Hi Daniel, On Wed, 21 Nov 2018 at 17:47, Daniel Schwierzeck wrote: > > Hi Simon, > > Am 19.11.18 um 16:53 schrieb Simon Glass: > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > --- > > > > arch/mips/mach-ath79/Kconfig |

[U-Boot] [PATCH v15 1/4] sandbox: smbios: Update to support sandbox

2018-11-22 Thread Simon Glass
At present this code casts addresses to pointers so cannot be used with sandbox. Update it to use mapmem instead. Signed-off-by: Simon Glass --- Changes in v15: None Changes in v14: - Fix condition for invalid pointer Changes in v13: - Update code to deal with the struct_table_address member C

Re: [U-Boot] [PATCH 1/3] Makefile: Add a warning for boards that don't use CONFIG_BLK

2018-11-22 Thread Marek Vasut
On 11/22/2018 09:09 PM, Simon Glass wrote: > The deadline for this has passed and we are starting to remove boards that > do not use driver model for block devices. > > Add a noisy Makefile warning. > > Signed-off-by: Simon Glass > --- > > Makefile | 7 +++ > 1 file changed, 7 insertions(+

[U-Boot] [PATCH] drivers: regulator: regulator-uclass: disallow disable of always-on

2018-11-22 Thread Richard Röjfors
It does not make sense to allow disable of a regulator that is defined always on. I found this because the new mmc code that tests if the mmc power can be switched off. That results in the rk3288 firefly board to die since the regulator, which is always-on, is shared with more than just mmc. Sign

Re: [U-Boot] [PATCH 1/3] Makefile: Add a warning for boards that don't use CONFIG_BLK

2018-11-22 Thread Tom Rini
On Thu, Nov 22, 2018 at 01:09:16PM -0700, Simon Glass wrote: > The deadline for this has passed and we are starting to remove boards that > do not use driver model for block devices. > > Add a noisy Makefile warning. > > Signed-off-by: Simon Glass > --- > > Makefile | 7 +++ > 1 file chan

Re: [U-Boot] [PATCH 0/2] dm: Complete CONFIG_BLK migration

2018-11-22 Thread Simon Glass
Hi Dennis, On Mon, 19 Nov 2018 at 09:28, Dennis Gilmore wrote: > > El mié, 27-06-2018 a las 17:40 -0400, Tom Rini escribió: > > On Sat, Jun 23, 2018 at 07:59:30AM -0600, Simon Glass wrote: > > > The time has come to migrate all boards to use CONFIG_BLK. This > > > series > > > is just a test to s

Re: [U-Boot] [PATCH 25/93] arm: Remove warp7 board

2018-11-22 Thread Simon Glass
Hi Fabio, On Mon, 19 Nov 2018 at 10:56, Fabio Estevam wrote: > > Hi Simon, > > On Mon, Nov 19, 2018 at 2:29 PM Simon Glass wrote: > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > CONFIG_DM_BLK does not exist. > > Which deadline? Shouldn't we have a warning to let p

Re: [U-Boot] [PATCH 56/93] arm: Remove am335x_baltos board

2018-11-22 Thread Simon Glass
On Tue, 20 Nov 2018 at 07:56, Yegor Yefremov wrote: > > Hi Simon, > > On Mon, Nov 19, 2018 at 4:55 PM Simon Glass wrote: > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > I've sent a fix: > https://lists.denx.de/pipermail/u-boot/2018-November/348319.ht

Re: [U-Boot] [PATCH 65/93] arm: Remove mx6cuboxi board

2018-11-22 Thread Simon Glass
Hi Mark, On Tue, 20 Nov 2018 at 00:52, Mark Kettenis wrote: > > > Date: Mon, 19 Nov 2018 08:53:45 -0700 > > From: Simon Glass > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > Hmm, isn't there something going wrong if a maintained board is > getting r

Re: [U-Boot] [PATCH 55/93] arm: Remove chiliboard board

2018-11-22 Thread Simon Glass
Hi Marcin, On Wed, 21 Nov 2018 at 06:05, Marcin Niestrój wrote: > > Hi Simon, All, > > Simon Glass writes: > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > I just got my hands on chiliboard to start using device-model > drivers. Unfortunately this boar

Re: [U-Boot] [PATCH 66/93] arm: Remove ot1200 board

2018-11-22 Thread Simon Glass
Hi, On Thu, 22 Nov 2018 at 10:02, Tom Rini wrote: > > On Thu, Nov 22, 2018 at 03:44:28PM +0100, Simon Goldschmidt wrote: > > Am Do., 22. Nov. 2018, 14:44 hat Tom Rini geschrieben: > > > > > On Thu, Nov 22, 2018 at 02:24:49PM +0100, Marek Vasut wrote: > > > > On 11/22/2018 01:52 PM, Tom Rini wrot

Re: [U-Boot] [PATCH 61/93] arm: Remove mx6sabresd board

2018-11-22 Thread Simon Glass
On Mon, 19 Nov 2018 at 16:58, Peng Fan wrote: > > Hi Simon, > > Please not remove this board, we will work to support DM_BLK. OK thanks Peng. - SImon ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 67/93] arm: Remove socfpga_stratix10 board

2018-11-22 Thread Simon Glass
Hi, On Tue, 20 Nov 2018 at 18:01, Ley Foon Tan wrote: > > On Tue, Nov 20, 2018 at 1:27 AM Simon Glass wrote: > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > > > Signed-off-by: Simon Glass > > --- > > > > board/altera/stratix10-socdk/MAINTAINERS |

Re: [U-Boot] [PATCH 50/93] arm: Remove imx6dl_mamoj board

2018-11-22 Thread Simon Glass
Hi Jagan, On Mon, 19 Nov 2018 at 10:23, Jagan Teki wrote: > > On Mon, Nov 19, 2018 at 9:25 PM Simon Glass wrote: > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > Remove it. > > It is CONFIG_BLK right? which is driver model block layer and it's > already enabled. Di

Re: [U-Boot] [PATCH 47/93] arm: Remove mx6sabreauto board

2018-11-22 Thread Simon Glass
Hi Peng, On Mon, 19 Nov 2018 at 16:56, Peng Fan wrote: > > Hi Simon, > > Please not remove this, we will work on that. OK thank you. Regards, Simon ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 70/93] arm: Remove ap121 board

2018-11-22 Thread Tom Rini
On Thu, Nov 22, 2018 at 01:50:08PM -0700, Simon Glass wrote: > Hi Daniel, > > On Wed, 21 Nov 2018 at 17:47, Daniel Schwierzeck > wrote: > > > > Hi Simon, > > > > Am 19.11.18 um 16:53 schrieb Simon Glass: > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > > Remove it. >

Re: [U-Boot] [PATCH 00/93] dm: Move towards completing CONFIG_BLK migration

2018-11-22 Thread Tom Rini
On Thu, Nov 22, 2018 at 01:50:34PM -0700, Simon Glass wrote: > Hi Tom, > > On Wed, 21 Nov 2018 at 08:10, Tom Rini wrote: > > > > On Tue, Nov 20, 2018 at 08:53:12AM -0500, Tom Rini wrote: > > > On Tue, Nov 20, 2018 at 02:45:24PM +0100, Marek Vasut wrote: > > > > On 11/20/2018 02:42 PM, Tom Rini wr

Re: [U-Boot] [PATCH 67/93] arm: Remove socfpga_stratix10 board

2018-11-22 Thread Tom Rini
On Thu, Nov 22, 2018 at 01:50:26PM -0700, Simon Glass wrote: > Hi, > > On Tue, 20 Nov 2018 at 18:01, Ley Foon Tan wrote: > > > > On Tue, Nov 20, 2018 at 1:27 AM Simon Glass wrote: > > > > > > This board has not been converted to CONFIG_DM_BLK by the deadline. > > > Remove it. > > > > > > Signed-

[U-Boot] [PATCH v2] sun8i_emac: add support for setting EMAC TX/RX delay

2018-11-22 Thread Alexander Weidinger
From: Icenowy Zheng Some boards have the EMAC TX/RX lanes wired with a different length with the clock lane, which can be workarounded by setting a TX/RX delay in the EMAC. This kind of delays are already defined in the newest device tree binding of dwmac-sun8i, which has already entered linux-n

Re: [U-Boot] [PATCH 00/93] dm: Move towards completing CONFIG_BLK migration

2018-11-22 Thread Fabio Estevam
Hi Soeren, On Tue, Nov 20, 2018 at 10:44 AM Soeren Moch wrote: > Fabio, Stefano, > > it seems (almost?) all i.mx6 boards should be removed within two weeks. > But would it not make more sense to convert the reference boards first > (mx6sabresd > in my case for tbs2910), and let hobbyist maintain

Re: [U-Boot] [PATCH 66/93] arm: Remove ot1200 board

2018-11-22 Thread Fabio Estevam
Hi Christian, On Thu, Nov 22, 2018 at 11:00 AM Christian Gmeiner wrote: > As the board is still mainted I will NAK it for the moment. Are there > any hints want needs to be done > to port thie board over to new DM stuff? There are some imx boards that use DM: git grep CONFIG_OF_CONTROL configs

Re: [U-Boot] [PATCH v2] sun8i_emac: add support for setting EMAC TX/RX delay

2018-11-22 Thread Jagan Teki
On Fri, Nov 23, 2018 at 5:08 AM Alexander Weidinger wrote: > > From: Icenowy Zheng > > Some boards have the EMAC TX/RX lanes wired with a different length with > the clock lane, which can be workarounded by setting a TX/RX delay in > the EMAC. > > This kind of delays are already defined in the ne

Re: [U-Boot] [PATCH u-boot v3 0/3] Add Amlogic Meson SPI Flash Controller driver

2018-11-22 Thread Jagan Teki
On Thu, Nov 22, 2018 at 3:31 PM Neil Armstrong wrote: > > The Amlogic Meson SoCs embeds a Flash oriented SPI Controller name SPIFC. > > This patchset add the driver ported from linux, but also import the regmap > regmap_read_poll_timeout() to implify the register polling in the driver. > > Neil Ar

Re: [U-Boot] [PATCH v2 17/18] spi: mtk_qspi: add qspi driver for MT7629 SoC

2018-11-22 Thread Jagan Teki
On Thu, Nov 22, 2018 at 2:29 PM Guochun Mao wrote: > > On Thu, 2018-11-22 at 11:51 +0530, Jagan Teki wrote: > > On Wed, Nov 21, 2018 at 5:16 PM Guochun Mao > > wrote: > > > > > > Hi Jagan, > > > > > > On Wed, 2018-11-21 at 15:08 +0530, Jagan Teki wrote: > > > > > > > > > > +static int mtk_qspi_t

Re: [U-Boot] [PATCH] x86/bootm: fix compressed image boot

2018-11-22 Thread Hannes Schmelzer
On 20.11.2018 16:34, Bin Meng wrote: Hi Hannes, Hi Bin, thanks for having a look into and sorry for my late response. On Thu, Oct 11, 2018 at 2:41 PM Hannes Schmelzer wrote: On 11.10.2018 08:01, Bin Meng wrote: Hi Hannes, Hi Bing, thanks for very quick response on this. On Thu, Oct 11

Re: [U-Boot] [PATCH v2] net: e1000: support 'write_hwaddr' in DM

2018-11-22 Thread Hannes Schmelzer
On 30.10.2018 13:06, Hannes Schmelzer wrote: On 10/30/2018 09:13 AM, Bin Meng wrote: On Thu, Oct 25, 2018 at 10:25 PM Hannes Schmelzer wrote: This commit ports the existing (non-DM) function for writing the MAC- address into the shadow ram (and flash) for DM. Signed-off-by: Hannes Schmelze

Re: [U-Boot] [PATCH v14 4/4] efi: Rename bootefi_test_finish() to bootefi_run_finish()

2018-11-22 Thread Heinrich Schuchardt
On 11/22/18 9:50 PM, Simon Glass wrote: > Hi Heinrich, > > On Mon, 19 Nov 2018 at 12:41, Heinrich Schuchardt wrote: >> >> On 11/15/18 12:11 AM, Simon Glass wrote: >>> This function can be used from do_bootefi_exec() so that we use mostly the >>> same code for a normal EFI application and an EFI t

<    1   2   3