[U-Boot] [PATCH] board: ti: dra71x-evm: Hook LDO1 of LP8733 to EN_PIN

2017-10-11 Thread Keerthy
All regulators are hooked to EN_Pin at reset so that EN Pin controls their state. Hook the LDO1 regulator to EN pin which at reset is not hooked. This applies only to LP8733. Signed-off-by: Keerthy --- board/ti/dra7xx/evm.c | 7 +++ 1 file changed, 7 insertions(+) diff

[U-Boot] [PATCH] tools: env: Add embedded.c to .gitignore

2017-10-11 Thread Bin Meng
Signed-off-by: Bin Meng --- tools/env/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/env/.gitignore b/tools/env/.gitignore index 804abac..8d28b2b 100644 --- a/tools/env/.gitignore +++ b/tools/env/.gitignore @@ -1,2 +1,3 @@ +embedded.c fw_printenv

Re: [U-Boot] [PATCH] power: extend prefix match to regulator-name property

2017-10-11 Thread Chen-Yu Tsai
On Mon, Oct 9, 2017 at 6:04 PM, Felix Brack wrote: > This patch extends pmic_bind_children prefix matching. In addition to > the node name the property regulator-name is used while trying to match > prefixes. This allows assigning different drivers to regulator nodes > named

Re: [U-Boot] [PATCH] power: extend prefix match to regulator-name property

2017-10-11 Thread Simon Glass
Hi Felix, On 9 October 2017 at 03:04, Felix Brack wrote: > > This patch extends pmic_bind_children prefix matching. In addition to > the node name the property regulator-name is used while trying to match > prefixes. This allows assigning different drivers to regulator nodes >

Re: [U-Boot] efi_loader query

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 12:13 PM, Suneel Garapati wrote: > Hi Rob, > > I am enlisted on u-boot mailing list and currently trying to use efi > loader to launch ubuntu distro. > > Appreciate your great efforts on this, would definitely help a lot. > > I tried to boot grub

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Fabio Estevam
On Wed, Oct 11, 2017 at 7:17 PM, Tom Rini wrote: > Hmmm. So, if you have DM and DM_MMC, you need BLK. If you have DM and > BLK and USB, you also need DM_USB (and vice-versa, if you have DM and DM_USB > and > not DM_MMC, things will break too, on another platform I bet).

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 07:07:04PM -0300, Fabio Estevam wrote: > On Wed, Oct 11, 2017 at 6:55 PM, Tom Rini wrote: > > > Yes, I think that's it, along with removing the default y if DM_MMC from > > the BLK entry. Thanks! > > Ok, if I do as suggested: > > ---

Re: [U-Boot] [PATCH 10/11] efi_loader: Add mem-mapped for fallback

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:59 AM, Alexander Graf wrote: > > > On 10.10.17 14:23, Rob Clark wrote: >> When we don't have a real device/image path, such as 'bootefi hello', >> construct a mem-mapped device-path. >> >> This fixes 'bootefi hello' after devicepath refactoring. >> >>

Re: [U-Boot] [PATCH 07/11] efi_loader: fix events

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:49 AM, Alexander Graf wrote: > > > On 10.10.17 14:23, Rob Clark wrote: >> An event can be created with type==0, Shell.efi does this for an event >> that is set when Ctrl-C is typed. So our current approach of having a >> fixed set of timer slots, and

Re: [U-Boot] [PATCH 06/11] efi_loader: Decouple EFI input/output from stdin/stdout

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:45 AM, Alexander Graf wrote: > > > On 10.10.17 14:23, Rob Clark wrote: >> In some cases, it is quite useful to have (for example) EFI on screen >> but u-boot on serial port. >> >> This adds two new optional environment variables, "efiin" and "efiout", >>

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Fabio Estevam
On Wed, Oct 11, 2017 at 6:55 PM, Tom Rini wrote: > Yes, I think that's it, along with removing the default y if DM_MMC from > the BLK entry. Thanks! Ok, if I do as suggested: --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig @@ -1,7 +1,6 @@ config BLK bool

Re: [U-Boot] [PATCH 02/11] efi_loader: Initial HII protocols

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:30 AM, Alexander Graf wrote: > > > On 10.10.17 14:22, Rob Clark wrote: >> From: Leif Lindholm >> >> Enough implementation of the following protocols to run Shell.efi and >> SCT.efi: >> >> EfiHiiConfigRoutingProtocolGuid >>

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 06:53:13PM -0300, Fabio Estevam wrote: > On Wed, Oct 11, 2017 at 6:49 PM, Tom Rini wrote: > > > It sounds like BLK shouldn't be default y if DM_MMC but rather selected > > by DM_MMC. Yes? > > What about this? > > --- a/drivers/mmc/Kconfig > +++

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Fabio Estevam
On Wed, Oct 11, 2017 at 6:49 PM, Tom Rini wrote: > It sounds like BLK shouldn't be default y if DM_MMC but rather selected > by DM_MMC. Yes? What about this? --- a/drivers/mmc/Kconfig +++ b/drivers/mmc/Kconfig @@ -13,6 +13,7 @@ config MMC config DM_MMC bool

Re: [U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 02:45:25PM -0700, Eric Nelson wrote: > Commit 6fbbcfd introduced device-tree support for MMC devices on > the mx7sabresd boards and didn't include BLK, which requires BLK. > > Commit 8ae5bb3 did the same for secure boot. > > Fix both by allowing blk-uclass (BLK) support.

[U-Boot] [PATCH V2] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Eric Nelson
Commit 6fbbcfd introduced device-tree support for MMC devices on the mx7sabresd boards and didn't include BLK, which requires BLK. Commit 8ae5bb3 did the same for secure boot. Fix both by allowing blk-uclass (BLK) support. Tested-by: Fabio Estevam Signed-off-by: Eric Nelson

Re: [U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Eric Nelson
Hi Tom, On 10/11/2017 01:51 PM, Tom Rini wrote: On Wed, Oct 11, 2017 at 05:50:04PM -0300, Fabio Estevam wrote: Hi Eric, That was the fix I was waiting for, thanks! On Wed, Oct 11, 2017 at 5:29 PM, Eric Nelson wrote: Please add a commit log and explain that this fixes a

Re: [U-Boot] [PATCH v2 14/14] arm: socfpga: stratix10: Enable Stratix10 SoC build

2017-10-11 Thread Dinh Nguyen
On Thu, Oct 5, 2017 at 8:07 AM, wrote: > From: Chin Liang See > > Add build support for Stratix SoC > > Signed-off-by: Chin Liang See > --- > arch/arm/Kconfig | 8 +- >

Re: [U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Eric Nelson
Hi Fabio, On 10/11/2017 01:50 PM, Fabio Estevam wrote: Hi Eric, That was the fix I was waiting for, thanks! Glad to hear it. On Wed, Oct 11, 2017 at 5:29 PM, Eric Nelson wrote: Please add a commit log and explain that this fixes a regression. Okay. If you insist ;)

Re: [U-Boot] [PATCH v2 13/14] board: altera: stratix10: Add socdk board support for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On Thu, Oct 5, 2017 at 8:07 AM, wrote: > From: Chin Liang See > > Add socdk board support for Stratix SoC > > Signed-off-by: Chin Liang See > --- > board/altera/stratix10-socdk/MAINTAINERS | 7 +++ >

Re: [U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 05:50:04PM -0300, Fabio Estevam wrote: > Hi Eric, > > That was the fix I was waiting for, thanks! > > On Wed, Oct 11, 2017 at 5:29 PM, Eric Nelson wrote: > > Please add a commit log and explain that this fixes a regression. > > > Change-Id:

Re: [U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Fabio Estevam
Hi Eric, That was the fix I was waiting for, thanks! On Wed, Oct 11, 2017 at 5:29 PM, Eric Nelson wrote: Please add a commit log and explain that this fixes a regression. > Change-Id: I1bdfffe782a61a4c688f1bb56e85448024cd497b Please remove this line. Also, when you send a

Re: [U-Boot] [PATCH 03/11] efi_loader: Initial EFI_UNICODE_COLLATION_PROTOCOL

2017-10-11 Thread Alexander Graf
On 11.10.17 22:30, Rob Clark wrote: > On Wed, Oct 11, 2017 at 10:36 AM, Alexander Graf wrote: >> >> >> On 10.10.17 14:22, Rob Clark wrote: >>> From: Leif Lindholm >>> >>> Not complete, but enough for Shell.efi and SCT.efi. >>> >>> Initial skeleton

Re: [U-Boot] [PATCH v2 12/14] ddr: altera: stratix10: Add DDR support for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On Thu, Oct 5, 2017 at 8:07 AM, wrote: > From: Chin Liang See > > Add DDR support for Stratix SoC > > Signed-off-by: Chin Liang See > --- > arch/arm/mach-socfpga/include/mach/sdram_s10.h | 333 +

Re: [U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Jagan Teki
On Thu, Oct 12, 2017 at 1:59 AM, Eric Nelson wrote: > Change-Id: I1bdfffe782a61a4c688f1bb56e85448024cd497b > Signed-off-by: Eric Nelson Reviewed-by: Jagan Teki -- Jagan Teki Free Software Engineer | www.openedev.com U-Boot, Linux |

Re: [U-Boot] [PATCH 01/11] efi_loader: Initial EFI_DEVICE_PATH_UTILITIES_PROTOCOL

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:07 AM, Alexander Graf wrote: > > > On 10.10.17 14:22, Rob Clark wrote: >> From: Leif Lindholm >> >> Not complete, but enough for Shell.efi and SCT.efi. We'll implement the >> rest as needed or once we have SCT running properly

[U-Boot] [PATCH] imx: mx7dsabresd: include BLK for MMC/eMMC support of driver model

2017-10-11 Thread Eric Nelson
Change-Id: I1bdfffe782a61a4c688f1bb56e85448024cd497b Signed-off-by: Eric Nelson --- configs/mx7dsabresd_defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/configs/mx7dsabresd_defconfig b/configs/mx7dsabresd_defconfig index 795c4f2..144fb50 100644 ---

Re: [U-Boot] [PATCH 03/11] efi_loader: Initial EFI_UNICODE_COLLATION_PROTOCOL

2017-10-11 Thread Rob Clark
On Wed, Oct 11, 2017 at 10:36 AM, Alexander Graf wrote: > > > On 10.10.17 14:22, Rob Clark wrote: >> From: Leif Lindholm >> >> Not complete, but enough for Shell.efi and SCT.efi. >> >> Initial skeleton written by Leif, and then implementation by myself.

[U-Boot] [PATCH] cmd/pxe.c: Rework bootargs construction to clarify string checks

2017-10-11 Thread Tom Rini
As the code currently stands, we first check that the length of the given command line, along with ip_str/mac_str along with an additional 1 for the NULL termination will fit within the buffer we have, and if not, we return an error. The way this code was originally written however left Coverity

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 01:09:04PM -0300, Fabio Estevam wrote: > On Wed, Oct 11, 2017 at 1:06 PM, Jagan Teki wrote: > > > I've observed here, u-boot is unable to relocate. So when I build > > U-Boot with removing u-boot,dm-spl from dts it works fine, but idea > > here I

[U-Boot] [PATCH] am33xx: Add a function to query MPU voltage in uV

2017-10-11 Thread Felix Brack
For the DM TPS65910 driver I'm working on, querying the MPU voltage should return a value in uV. This value can then be used by the regulator's standard function set_value to set the MPU voltage. Signed-off-by: Felix Brack --- arch/arm/include/asm/arch-am33xx/sys_proto.h | 1 +

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Jagan Teki
+ Stefano On Wed, Oct 11, 2017 at 9:39 PM, Fabio Estevam wrote: > On Wed, Oct 11, 2017 at 1:06 PM, Jagan Teki wrote: > >> I've observed here, u-boot is unable to relocate. So when I build >> U-Boot with removing u-boot,dm-spl from dts it works

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Fabio Estevam
On Wed, Oct 11, 2017 at 1:06 PM, Jagan Teki wrote: > I've observed here, u-boot is unable to relocate. So when I build > U-Boot with removing u-boot,dm-spl from dts it works fine, but idea > here I need to use SPL_OF_CONTROL and it is not related to DM_MMC I > suppose.

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Jagan Teki
Hi Fabio, On Wed, Oct 11, 2017 at 9:19 PM, Fabio Estevam wrote: > Hi Jagan, > > On Wed, Oct 11, 2017 at 7:17 AM, Jagan Teki wrote: > >> Still looping for i.MX6UL. > > Can you test it again removing CONFIG_DM_MMC support? I've observed here, u-boot

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Fabio Estevam
Hi Jagan, On Wed, Oct 11, 2017 at 7:17 AM, Jagan Teki wrote: > Still looping for i.MX6UL. Can you test it again removing CONFIG_DM_MMC support? ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH] mx7dsabresd: Remove CONFIG_DM_MMC to avoid regression

2017-10-11 Thread Fabio Estevam
On Wed, Oct 11, 2017 at 11:27 AM, Otavio Salvador wrote: > I understand your goal but I think we ought to focus on fixing the > root cause of it instead of moving things back out of DM. I even think > we could postpone a little the release until a fix is made

Re: [U-Boot] [PATCH v2 06/14] arm: socfpga: stratix10: Add mailbox support for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On Wed, Oct 11, 2017 at 4:33 AM, Dinh Nguyen wrote: > > > On 10/05/2017 08:07 AM, chin.liang@intel.com wrote: >> From: Chin Liang See >> >> Add mailbox support for Stratix SoC >> >> Signed-off-by: Ley Foon Tan >>

[U-Boot] [PATCH] mmc: sanitize includes for DM i2c

2017-10-11 Thread Felix Brack
This patch fixes some warnings when building boards that do not define DM_I2C_COMPAT i.e. boards that entirely rely on the new i2c layer. Signed-off-by: Felix Brack --- drivers/mmc/omap_hsmmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [U-Boot] [PATCH 10/11] efi_loader: Add mem-mapped for fallback

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > When we don't have a real device/image path, such as 'bootefi hello', > construct a mem-mapped device-path. > > This fixes 'bootefi hello' after devicepath refactoring. > > Fixes: 95c5553ea2 ("efi_loader: refactor boot device and loaded_image > handling")

[U-Boot] [PATCH] kbuild: fix dependency of DT build

2017-10-11 Thread Masahiro Yamada
I saw a DT build issue report some time before [1]. I was able to reproduce the bug, and figure out the root cause. Since commit 6d427c6b1fa0 ("binman: Automatically include a U-Boot .dtsi file"), invalid .*.cmd files are generated. Since that commit, DTS files are put into sed and piped to

Re: [U-Boot] [PATCH 09/11] efi_loader: Fix disk dp's for pre-DM/legacy devices

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > This fixes an issue with OpenBSD's bootloader, and I think should also > fix a similar issue with grub2 on legacy devices. In the legacy case > we were creating disk objects for the partitions, but not also the > parent device. > > Reported-by: Jonathan

Re: [U-Boot] [PATCH 08/11] efi_loader: implement SetWatchdogTimer

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > From: Heinrich Schuchardt > > The watchdog is initialized with a 5 minute timeout period. > It can be reset by SetWatchdogTimer. > It is stopped by ExitBoottimeServices. > > Signed-off-by: Heinrich Schuchardt This

Re: [U-Boot] [PATCH 07/11] efi_loader: fix events

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > An event can be created with type==0, Shell.efi does this for an event > that is set when Ctrl-C is typed. So our current approach of having a > fixed set of timer slots, and determining which slots are unused by > type==0 doesn't work so well. But we

Re: [U-Boot] [PATCH 06/11] efi_loader: Decouple EFI input/output from stdin/stdout

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > In some cases, it is quite useful to have (for example) EFI on screen > but u-boot on serial port. > > This adds two new optional environment variables, "efiin" and "efiout", > which can be used to set EFI console input/output independently of > u-boot's

Re: [U-Boot] [PATCH 05/11] efi_loader: console support for color attributes

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > Shell.efi uses this, and supporting color attributes makes things look > nicer. Map the EFI fg/bg color attributes to ANSI escape sequences. > Not all colors have a perfect match, but spec just says "Devices > supporting a different number of text colors

Re: [U-Boot] [PATCH 04/11] efi_loader: SIMPLE_TEXT_INPUT_EX plus wire up objects properly

2017-10-11 Thread Alexander Graf
On 10.10.17 14:23, Rob Clark wrote: > We need the _EX version for SCT.. and we need to wire up the > corresponding objects in the systab properly, as well as dealing > with the console_in object advertising multiple protocols. > > Signed-off-by: Rob Clark Reviewed-by:

Re: [U-Boot] [PATCH 03/11] efi_loader: Initial EFI_UNICODE_COLLATION_PROTOCOL

2017-10-11 Thread Alexander Graf
On 10.10.17 14:22, Rob Clark wrote: > From: Leif Lindholm > > Not complete, but enough for Shell.efi and SCT.efi. > > Initial skeleton written by Leif, and then implementation by myself. > > Cc: Leif Lindholm > Signed-off-by: Rob Clark

Re: [U-Boot] [PATCH 02/11] efi_loader: Initial HII protocols

2017-10-11 Thread Alexander Graf
On 10.10.17 14:22, Rob Clark wrote: > From: Leif Lindholm > > Enough implementation of the following protocols to run Shell.efi and > SCT.efi: > > EfiHiiConfigRoutingProtocolGuid > EfiHiiDatabaseProtocol > EfiHiiStringProtocol > > We'll fill in the rest once

Re: [U-Boot] [PATCH] mx7dsabresd: Remove CONFIG_DM_MMC to avoid regression

2017-10-11 Thread Otavio Salvador
On Wed, Oct 11, 2017 at 11:23 AM, Fabio Estevam wrote: > Since U-Boot 2017.09 it is no longer possible to boot a kernel from SD > card: > > U-Boot 2017.11-rc1-00149-g38c8107-dirty (Oct 11 2017 - 09:55:22 -0300) > > CPU: Freescale i.MX7D rev1.2 1000 MHz (running at 792

[U-Boot] [PATCH] mx7dsabresd: Remove CONFIG_DM_MMC to avoid regression

2017-10-11 Thread Fabio Estevam
Since U-Boot 2017.09 it is no longer possible to boot a kernel from SD card: U-Boot 2017.11-rc1-00149-g38c8107-dirty (Oct 11 2017 - 09:55:22 -0300) CPU: Freescale i.MX7D rev1.2 1000 MHz (running at 792

Re: [U-Boot] [PATCH 01/11] efi_loader: Initial EFI_DEVICE_PATH_UTILITIES_PROTOCOL

2017-10-11 Thread Alexander Graf
On 10.10.17 14:22, Rob Clark wrote: > From: Leif Lindholm > > Not complete, but enough for Shell.efi and SCT.efi. We'll implement the > rest as needed or once we have SCT running properly so there is a way to > validate the interface against the conformance test

[U-Boot] [PATCH 0/2] stm32f7_i2c fixes

2017-10-11 Thread patrice.chotard
From: Patrice Chotard This series : _ fixes data abort for stm32f7_i2c driver _ removes useless local variable Christophe Kerello (1): i2c: stm32f7_i2c: fix data abort Patrice Chotard (1): i2c: stm32f7_i2c: fix usage of useless local variable

[U-Boot] [PATCH 1/2] i2c: stm32f7_i2c: fix data abort

2017-10-11 Thread patrice.chotard
From: Christophe Kerello As "v" is a local variable in stm32_i2c_choose_solution() "v" has to be copied into "s" to avoid data abort in stm32_i2c_compute_timing(). Signed-off-by: Christophe Kerello Reviewed-by: Patrick DELAUNAY

[U-Boot] [PATCH 2/2] i2c: stm32f7_i2c: fix usage of useless local variable

2017-10-11 Thread patrice.chotard
From: Patrice Chotard Remove useless local variable "s" and use directly function's parameter "output" Signed-off-by: Patrice Chotard --- drivers/i2c/stm32f7_i2c.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] [PATCH 031/080] serial: ns16550: Fix address translation

2017-10-11 Thread Mario Six
Hi, On Mon, Oct 9, 2017 at 4:09 PM, Simon Glass wrote: > Hi, > > On 9 October 2017 at 06:55, Dr. Philipp Tomsich > wrote: >> >>> On 9 Oct 2017, at 14:45, Mario Six wrote: >>> >>> (adding Philipp since he converted

Re: [U-Boot] [PATCH] dwc: ep0: Allocate and flush dwc->ep0_trb in a cache aligned manner

2017-10-11 Thread Faiz Abbas
On Wednesday 11 October 2017 02:28 PM, Kishon Vijay Abraham I wrote: > Hi, > > On Wednesday 11 October 2017 01:53 PM, Faiz Abbas wrote: >> Hi, >> >> On Tuesday 10 October 2017 07:19 PM, Marek Vasut wrote: >>> On 10/10/2017 12:45 PM, Faiz Abbas wrote: Hi Marek, On Tuesday 10

Re: [U-Boot] [XHCI] Maintainer split

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 03:17:24PM +0200, Marek Vasut wrote: > On 10/11/2017 03:30 AM, Bin Meng wrote: > > On Wed, Oct 11, 2017 at 5:04 AM, Tom Rini wrote: > >> On Tue, Oct 10, 2017 at 11:27:39AM +0200, Marek Vasut wrote: > >> > >>> Hi, > >>> > >>> I am considering offloading

Re: [U-Boot] [XHCI] Maintainer split

2017-10-11 Thread Marek Vasut
On 10/11/2017 03:30 AM, Bin Meng wrote: > On Wed, Oct 11, 2017 at 5:04 AM, Tom Rini wrote: >> On Tue, Oct 10, 2017 at 11:27:39AM +0200, Marek Vasut wrote: >> >>> Hi, >>> >>> I am considering offloading xhci maintainership to Bin . >>> Thoughts ? >> >> If Bin wants it, I have

[U-Boot] [PATCH v2] armv8: ls1088: Move CONFIG_ENV_IS_IN_SPI_FLASH to defconfig

2017-10-11 Thread Ashish Kumar
Signed-off-by: Ashish Kumar --- v2: Reword commit msg configs/ls1088aqds_qspi_defconfig | 1 + configs/ls1088ardb_qspi_defconfig | 1 + include/configs/ls1088aqds.h | 1 - include/configs/ls1088ardb.h | 1 - 4 files changed, 2 insertions(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH RESEND] DW SPI: Get clock value from Device Tree

2017-10-11 Thread Eugeniy Paltsev
Hi Jagan, Thanks for respond, my comments are given inline. On Wed, 2017-10-11 at 16:36 +0530, Jagan Teki wrote: > On Tue, Sep 26, 2017 at 6:40 PM, Eugeniy Paltsev > wrote: > > Add option to set spi controller clock frequency via device tree > > using standard clock

Re: [U-Boot] Please pull u-boot-sh/rmobile branch

2017-10-11 Thread Tom Rini
On Wed, Oct 11, 2017 at 08:53:25AM +0900, Nobuhiro Iwamatsu wrote: > Hi, Tom. > > The following changes since commit 37a7908137a8c904f43c83f3e6c269cd51bf6126: > > ARM: dts: rmobile: Update DTS to match Linux 4.13 (2017-09-12 23:01:51 > +0200) > > are available in the git repository at: > >

Re: [U-Boot] [PATCH RESEND] DW SPI: Get clock value from Device Tree

2017-10-11 Thread Jagan Teki
On Tue, Sep 26, 2017 at 6:40 PM, Eugeniy Paltsev wrote: > Add option to set spi controller clock frequency via device tree > using standard clock bindings. > Old way of setting spi controller clock frequency (via implementation > of 'cm_get_spi_controller_clk_hz'

Re: [U-Boot] fsl_esdhc driver is broken with DM

2017-10-11 Thread Jagan Teki
On Tue, Oct 10, 2017 at 5:18 PM, Fabio Estevam wrote: > Hi Jagan, > > On Mon, Oct 9, 2017 at 3:05 PM, Jagan Teki wrote: > >> I didn't dig much, but the i.MX6UL case has rebooting with DM_MMC for >> both SPL and U-Boot proper. > > Looks like the same

Re: [U-Boot] [PATCH 2/4] spi: Drop CONFIG_ATMEL_DATAFLASH_SPI

2017-10-11 Thread Yang, Wenyou
Hi Tuomas, On 2017/10/11 2:59, Tuomas Tynkkynen wrote: Last user of this option went away in commit: fdc7718999 ("board: usb_a9263: Update to support DT and DM") It is okay for me. Acked-by: Wenyou Yang Signed-off-by: Tuomas Tynkkynen

Re: [U-Boot] [PATCH v2 06/14] arm: socfpga: stratix10: Add mailbox support for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On 10/05/2017 08:07 AM, chin.liang@intel.com wrote: > From: Chin Liang See > > Add mailbox support for Stratix SoC > > Signed-off-by: Ley Foon Tan > Signed-off-by: Chin Liang See > --- >

Re: [U-Boot] [PATCH v2 11/14] arm: socfpga: stratix10: Add timer support for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On 10/05/2017 08:07 AM, chin.liang@intel.com wrote: > From: Chin Liang See > > Add timer support for Stratix SoC > > Signed-off-by: Chin Liang See > --- > arch/arm/mach-socfpga/timer.c | 17 - > 1 file changed, 16

Re: [U-Boot] [PATCH v2 10/14] arm: socfpga: stratix10: Add SPL driver for Stratix10 SoC

2017-10-11 Thread Dinh Nguyen
On 10/05/2017 08:07 AM, chin.liang@intel.com wrote: > From: Chin Liang See > > Add SPL driver support for Stratix SoC > > Signed-off-by: Chin Liang See > --- > arch/arm/mach-socfpga/Makefile| 4 + >

Re: [U-Boot] [PATCH v2 09/14] arm: socfpga: Restructure the SPL file

2017-10-11 Thread Dinh Nguyen
On 10/05/2017 08:07 AM, chin.liang@intel.com wrote: > From: Chin Liang See > > Restructure the SPL so each devices such as CV, A10 and S10 > will have their own dedicated SPL file. SPL file determine > the HW initialization flow which is device specific > >

[U-Boot] Please pull from u-boot-i2c

2017-10-11 Thread Heiko Schocher
Hello Tom, please pull from u-boot-i2c master The following changes since commit 45c9d96ae40b0c4292eb67d687f0bf698a0ce72b: configs: Re-sync CONFIG_CMD_IMLS with moveconfig (2017-10-10 17:52:07 -0400) are available in the git repository at: git://git.denx.de/u-boot-i2c.git master for you

Re: [U-Boot] [PATCH] dwc: ep0: Allocate and flush dwc->ep0_trb in a cache aligned manner

2017-10-11 Thread Kishon Vijay Abraham I
Hi, On Wednesday 11 October 2017 01:53 PM, Faiz Abbas wrote: > Hi, > > On Tuesday 10 October 2017 07:19 PM, Marek Vasut wrote: >> On 10/10/2017 12:45 PM, Faiz Abbas wrote: >>> Hi Marek, >>> >>> On Tuesday 10 October 2017 01:30 PM, Marek Vasut wrote: On 10/10/2017 07:48 AM, Kishon Vijay

Re: [U-Boot] [PATCH] dwc: ep0: Allocate and flush dwc->ep0_trb in a cache aligned manner

2017-10-11 Thread Faiz Abbas
Hi, On Tuesday 10 October 2017 07:19 PM, Marek Vasut wrote: > On 10/10/2017 12:45 PM, Faiz Abbas wrote: >> Hi Marek, >> >> On Tuesday 10 October 2017 01:30 PM, Marek Vasut wrote: >>> On 10/10/2017 07:48 AM, Kishon Vijay Abraham I wrote: Hi, >>> >>> Hi, >>> >>> [...] >>> >> -

Re: [U-Boot] [PATCH] drivers: pci: imx: fix imx_pcie_remove function

2017-10-11 Thread ELSOFT AG
Hi Fabio Fabio Estevam wrote: > From: Sven-Ola Tuecke > > However, at least on some i.MX6 custom boards, when calling By "some", I assume that not all i.MX6 systems are showing this behaviour. Does anyone have an idea which systems are affected and which are not?

Re: [U-Boot] [PATCH 11/11] efi_loader: exclude openrd devices

2017-10-11 Thread Alexander Graf
On 11.10.17 09:07, Stefan Roese wrote: > (Adding Albert as maintainer again) > > On 11.10.2017 00:50, Rob Clark wrote: >> On Tue, Oct 10, 2017 at 6:28 PM, Heinrich Schuchardt >> wrote: >>> On 10/10/2017 02:23 PM, Rob Clark wrote: These devices have small image

Re: [U-Boot] [PATCH 11/11] efi_loader: exclude openrd devices

2017-10-11 Thread Stefan Roese
(Adding Albert as maintainer again) On 11.10.2017 00:50, Rob Clark wrote: On Tue, Oct 10, 2017 at 6:28 PM, Heinrich Schuchardt wrote: On 10/10/2017 02:23 PM, Rob Clark wrote: These devices have small image size limits, so exclude EFI_LOADER to help avoid exceeding

[U-Boot] [PATCH v3 3/3] rockchip: check download key before bootup

2017-10-11 Thread Andy Yan
Enter download mode if the download key pressed. Signed-off-by: Andy Yan --- Changes in v3: None Changes in v2: - more document - move adc key detect as the default arch/arm/mach-rockchip/boot_mode.c | 43 ++ 1 file changed, 43

[U-Boot] [PATCH v3 1/3] rockchip: make boot_mode related codes reused across all platforms

2017-10-11 Thread Andy Yan
setup_boot_mode function use the same logic but different mode register address across all the rockchip platforms, so it's better to make this function reused across all the platforms, and let the mode register address setting from the config file. Signed-off-by: Andy Yan

[U-Boot] [PATCH v3 2/3] rockchip: add support for enter to bootrom download mode

2017-10-11 Thread Andy Yan
Rockchip bootrom will enter download mode if it returns from spl/tpl with a non-zero value and couldn't find a valid image in the backup partition. This patch provide a method to instruct the system to back to bootrom download mode by checking the BROM_DOWNLOAD_FLAG register. As the bootrom

[U-Boot] [PATCH v3 0/3] Most rockchip platform based boards use a key to instruct

2017-10-11 Thread Andy Yan
the board enter download firmware mode, some boards use a adc to detect the key status, and some use a gpio. This series try to implement all the download mode related functions on the base of Dr. Philipp's patch[0]. [0]https://lists.denx.de/pipermail/u-boot/2017-October/309060.html Changes in