Re: [U-Boot] [UBOOT] [PATCH] cmd: usb: ignore block devices under mass storage device

2017-09-01 Thread Suneel Garapati
Hi Simon, On Thu, Aug 31, 2017 at 5:52 AM, Simon Glass wrote: > Hi Suneel, > > On 15 August 2017 at 11:06, Suneel Garapati wrote: >> Hi Simon, >> >> >> On Sun, Aug 13, 2017 at 2:37 PM, Simon Glass wrote: >>> Hi Suneel, >>> >>> On 10 August 2017 at 23:53, Suneel Garapati wrote: usb tree an

Re: [U-Boot] [UBOOT] [PATCH] cmd: usb: ignore block devices under mass storage device

2017-09-01 Thread Suneel Garapati
Hi, On Thu, Aug 31, 2017 at 11:30 PM, Lothar Waßmann wrote: > Hi, > > On Thu, 10 Aug 2017 22:53:31 -0700 Suneel Garapati wrote: >> usb tree and info commands may cause crash otherwise >> >> Signed-off-by: Suneel Garapati >> --- >> cmd/usb.c | 6 -- >> 1 file changed, 4 insertions(+), 2 del

Re: [U-Boot] [U-BOOT][PATCH] drivers: ahci: write upper 32 bits for clb and fis registers

2017-09-01 Thread Suneel Garapati
Hi, I need to send v1 with LOWER32 and UPPER32 macro definitions, so bad to miss them. Regards, Suneel On Thu, Aug 24, 2017 at 12:54 AM, Bin Meng wrote: > On Thu, Aug 24, 2017 at 2:02 PM, Suneel Garapati > wrote: >> If 64-bit capability is supported, commandlistbase and fis base >> should be

Re: [U-Boot] [PATCH] misc: Kconfig: Add SPL_I2C_EEPROM option

2017-09-01 Thread Yang, Wenyou
Hi, Do you have any comments? On 2017/8/3 9:00, Wenyou Yang wrote: This option is an SPL-variant of the I2C_EEPROM option to enable the driver for generic I2C-attached EEPROMs for SPL. Signed-off-by: Wenyou Yang --- drivers/misc/Kconfig | 8 drivers/misc/Makefile | 2 +- 2 fil

Re: [U-Boot] [PATCH 0/2] misc: i2c_eeprom: Add compatibles

2017-09-01 Thread Yang, Wenyou
Hi, Can be accepted? On 2017/7/31 11:25, Wenyou Yang wrote: Add the compatibles to support the I2C EEPROM 24AA02E48 and AT24MAC402 respectively. - microchip,24aa02e48 - atmel,24mac402 Wenyou Yang (2): misc: i2c_eeprom: Add compatible for 24AA02E48 misc: i2c_eeprom: Add compatible f

Re: [U-Boot] [PATCH 0/7] board: atmel: Convert to support DM_VIDEO

2017-09-01 Thread Yang, Wenyou
Hi On 2017/7/31 14:02, Wenyou Yang wrote: Add a common code to display the company's logo and board information by using the API from DM_VIDEO under the board/$(VENDOR)/common folder, and the logo files can be used by the API from DM_VIDEO, and then convert the board to enable the driver model s

Re: [U-Boot] [PATCH 03/23] efi_loader: support 16 protocols per efi_object

2017-09-01 Thread Alexander Graf
On 01.09.17 03:45, Heinrich Schuchardt wrote: On 08/31/2017 04:01 PM, Alexander Graf wrote: On 08/27/2017 12:51 AM, Heinrich Schuchardt wrote: 8 protocols per efi_object is insufficient for iPXE. Signed-off-by: Heinrich Schuchardt --- include/efi_loader.h | 4 ++-- 1 file changed, 2 in

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Marek Vasut
On 08/31/2017 08:20 PM, Sam Protsenko wrote: > Since 842778a09104 commit, "fastboot devices" stopped to show correct > device serial number for TI boards, showing this line instead: > > fastboot > > This is because serial# env variable could be set after g_dnl gadget was > i

[U-Boot] [PATCH 1/2] armv8: layerscape: Allocate 66 MB DDR for secure memory

2017-09-01 Thread Sumit Garg
Change DDR allocated for secure memory from 2 MB to 66 MB. This additional 64 MB secure memory is required for trusted OS running in Trusted Execution Environment using ARMv8 TrustZone. Signed-off-by: Sumit Garg --- arch/arm/include/asm/arch-fsl-layerscape/config.h | 2 +- 1 file changed, 1 inse

[U-Boot] [PATCH 2/2] armv8: sec_firmware: Add support for loadables in FIT

2017-09-01 Thread Sumit Garg
Enable support for loadables in SEC firmware FIT image. Currently support is added for single loadable image. Brief description of implementation: - Add two more address pointers (loadable_h, loadable_l) as arguments to sec_firmware_init() api. - Create new api: sec_firmware_checks_copy_loadable

[U-Boot] [PATCH v4 0/3] board: atmel: Set the ethernet mac address from eeprom

2017-09-01 Thread Wenyou Yang
Create board/$(VENDOR)/common folder to accommodate the common code for the boards from atmel. Now put the code to set the ethernet mac address here, using the function to set the ethernet mac address on sama5d2 and sama5d4 Xplained boards. Changes in v4: - Follow up the env function renaming. -

Re: [U-Boot] [PATCH] arm64: ls1043ardb: Add distro secure boot support

2017-09-01 Thread Sumit Garg
> -Original Message- > From: York Sun > Sent: Friday, September 01, 2017 4:38 AM > To: Sumit Garg ; u-boot@lists.denx.de > Cc: Ruchika Gupta ; Prabhakar Kushwaha > ; Mingkai Hu ; > Shengzhou Liu > Subject: Re: [PATCH] arm64: ls1043ardb: Add distro secure boot support > > On 06/04/2017 11:

[U-Boot] [PATCH v4 2/3] board: sama5d2_xplained: Replace code to set mac address

2017-09-01 Thread Wenyou Yang
Replace the code to set the ethernet mac address with the code from the common folder. Signed-off-by: Wenyou Yang --- Changes in v4: None Changes in v3: None Changes in v2: None arch/arm/dts/at91-sama5d2_xplained.dts | 5 +++ board/atmel/sama5d2_xplained/sama5d2_xplained.c | 46 +++--

[U-Boot] [PATCH v4 3/3] board: sama5d4_xplained: Set mac address from eeprom

2017-09-01 Thread Wenyou Yang
Add the code to set the ethernet mac address from eeprom by using the common code from the common folder. Signed-off-by: Wenyou Yang --- Changes in v4: - Rebase the latest commit(8b3cec7da) on uboot/master. Changes in v3: - remove CONFIG_SPL_I2C_SUPPORT=y from the default configuration files.

[U-Boot] [PATCH v4 1/3] board: atmel: Create board/$(VENDOR)/common folder

2017-09-01 Thread Wenyou Yang
Create board/$(VENDOR)/common folder to accommodate the common code shared by other atmel boards, now put the code to set ethernet mac address from eeprom, which uses the i2c eeprom driver. Signed-off-by: Wenyou Yang --- Changes in v4: - Follow up the env function renaming. Changes in v3: None

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Łukasz Majewski
On 09/01/2017 10:19 AM, Marek Vasut wrote: On 08/31/2017 08:20 PM, Sam Protsenko wrote: Since 842778a09104 commit, "fastboot devices" stopped to show correct device serial number for TI boards, showing this line instead: fastboot This is because serial# env variable cou

[U-Boot] [PATCH v3] patman: add support for omitting bouncing addresses

2017-09-01 Thread Chris Packham
Add support for reading a list of bouncing addresses from a in-tree file (doc/bounces) and from the ~/.patman config file. These addresses are stripped from the Cc list. Signed-off-by: Chris Packham Reviewed-by: Simon Glass --- This version supports an in-tree doc/bounces file as well as a secti

Re: [U-Boot] [PATCH v3] patman: add support for omitting bouncing addresses

2017-09-01 Thread Dr. Philipp Tomsich
> On 1 Sep 2017, at 10:57, Chris Packham wrote: > > Add support for reading a list of bouncing addresses from a in-tree file > (doc/bounces) and from the ~/.patman config file. These addresses are > stripped from the Cc list. > > Signed-off-by: Chris Packham > Reviewed-by: Simon Glass Review

Re: [U-Boot] [PATCH 1/2] x86: ich-spi: Remove useless assignment in ich_spi_xfer()

2017-09-01 Thread Bin Meng
On Sun, Aug 27, 2017 at 4:00 PM, Stefan Roese wrote: > On 27.08.2017 04:22, Bin Meng wrote: >> >> In ich_spi_xfer() when the driver presets control fields, control >> variable gets assigned twice. Apparently only the last assignment >> takes effect. Remove the other one. >> >> Signed-off-by: Bin M

Re: [U-Boot] [PATCH 2/2] x86: ich-spi: Clear atomic preop only when SPI settings are not locked

2017-09-01 Thread Bin Meng
On Sun, Aug 27, 2017 at 4:00 PM, Stefan Roese wrote: > On 27.08.2017 04:22, Bin Meng wrote: >> >> The atomic preop register can only be written when SPI settings are >> not locked, otherwise it's read-only. >> >> Signed-off-by: Bin Meng >> --- >> >> drivers/spi/ich.c | 3 ++- >> 1 file changed

Re: [U-Boot] [PATCH] x86: baytrail: acpi: Add full reset bit to the reset register value in FADT

2017-09-01 Thread Bin Meng
On Tue, Aug 29, 2017 at 3:49 PM, Stefan Roese wrote: > On 29.08.2017 07:09, Bin Meng wrote: >> >> It was noticed a few times, that the reboot from Linux (reboot command) >> is different from the reboot (reset command) under U-Boot. The U-Boot >> version does seem to reset the board more deeply (PC

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Marek Vasut
On 09/01/2017 10:36 AM, Łukasz Majewski wrote: > On 09/01/2017 10:19 AM, Marek Vasut wrote: >> On 08/31/2017 08:20 PM, Sam Protsenko wrote: >>> Since 842778a09104 commit, "fastboot devices" stopped to show correct >>> device serial number for TI boards, showing this line instead: >>> >>> ??

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Łukasz Majewski
On 09/01/2017 11:51 AM, Marek Vasut wrote: On 09/01/2017 10:36 AM, Łukasz Majewski wrote: On 09/01/2017 10:19 AM, Marek Vasut wrote: On 08/31/2017 08:20 PM, Sam Protsenko wrote: Since 842778a09104 commit, "fastboot devices" stopped to show correct device serial number for TI boards, showing th

Re: [U-Boot] [PATCH v3 4/5] usb: net: migrate USB Ethernet adapters to Kconfig

2017-09-01 Thread Simon Glass
On 28 August 2017 at 16:50, Chris Packham wrote: > This migrates ASIX, ASIX88179, MCS7830, RTL8152 and SMSC95XX to Kconfig. > Update defconfigs. > > Signed-off-by: Chris Packham > --- > > Changes in v3: None > Changes in v2: > - add imply for TARGET_NITROGEN6X, ARCH_EXYNOS5 and X86 > > arch/Kcon

Re: [U-Boot] [PATCH 2/2] ARM: Add a new arch + board for QEMU's 'virt' machine

2017-09-01 Thread Tuomas Tynkkynen
Hi, On 08/31/2017 09:55 AM, Bin Meng wrote: Hi Tuomas, On Wed, Aug 30, 2017 at 4:31 PM, Tuomas Tynkkynen wrote: This board builds an U-Boot binary that is bootable with QEMU's 'virt' machine on ARM. The minimal QEMU command line is: qemu-system-arm -machine virt,highmem=off -bios u-boot

[U-Boot] [PATCH] sunxi: Change SUNXI_GMAC to SUN7I_GMAC in sources

2017-09-01 Thread Lionel Koenig
Following 4d43d065db3262f9a9918ba72457bf36dfb8e0bb, SUNXI_GMAC was still used to configure the code while SUN7I_GMAC was used in the configuration tools. Signed-off-by: Lionel Koenig --- arch/arm/include/asm/arch-sunxi/sys_proto.h | 2 +- board/sunxi/Makefile| 2 +- inclu

[U-Boot] do_nand_status( ) patch

2017-09-01 Thread masonccyang
Hi, Checking all nand chip is necessary and some of NAND host implement cmd_ctrl() from cmdfunc( ). The select_chip() is required. === diff --git a/cmd/nand.c b/cmd/nand.c index 5b9d4b3..a7c781a 100644 --- a/cmd/nand.c

Re: [U-Boot] [PATCH 1/2] PCI: Add driver for a 'pci-host-ecam-generic' host controller

2017-09-01 Thread Tuomas Tynkkynen
Hi, On 08/31/2017 09:51 AM, Bin Meng wrote: Hi Tuomas, On Wed, Aug 30, 2017 at 4:31 PM, Tuomas Tynkkynen wrote: QEMU emulates such a device with '-machine virt,highmem=off' on ARM. The 'highmem=off' part is required for things to work as the PCI code in U-Boot doesn't seem to support 64-bit B

[U-Boot] Altera Arria10 socfpga image usage

2017-09-01 Thread Andre Renaud
Hi, Is there a document somewhere describing how to program the Arria10 dev kit with the u-boot-with-spl.sfp image? This is the image built from the 'next' branch from http://git.denx.de/?p=u-boot/u-boot-socfpga.git using: $ make socfpga_arria10_defconfig $ make The image is too large to be wrappe

[U-Boot] [PATCH 1/1] armv8: ls1012a: Memory Map modification of kernel, env

2017-09-01 Thread Bhaskar Upadhaya
This patch adjusts memory map for images on LS1012A as per below memory map: Image Flash Offset RCW+PBI 0x Boot firmware (U-Boot) 0x0010 Boot firmware Environment 0x0030 Signed-off-

Re: [U-Boot] [PATCH 1/3] arm: dts: da850: Migrate da850-evm DTS files from Linux 4.13-RC5

2017-09-01 Thread Sekhar Nori
On Sunday 27 August 2017 01:46 AM, Adam Ford wrote: > A few small additional items are needed to support DM_SPI and > DM_SERIAL, so those were added to da850-evm-u-boot.dtsi > > Signed-off-by: Adam Ford > --- > arch/arm/dts/da850-evm-u-boot.dtsi | 22 ++ > arch/arm/dts/da850-evm.dts | 3

[U-Boot] QSPI "sf probe ...", "sf read ..." on Altera SoC FPGA

2017-09-01 Thread Hannes Schmelzer
Hi Eldor, just found your post in the mailinglist. https://lists.denx.de/pipermail/u-boot/2016-December/276491.html Reason why i'm searched there is, that i've now excactly same problem as you. I'm using most current mainline u-boot. did you ever found some solution for your tro

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Sam Protsenko
On 1 September 2017 at 11:19, Marek Vasut wrote: > On 08/31/2017 08:20 PM, Sam Protsenko wrote: >> Since 842778a09104 commit, "fastboot devices" stopped to show correct >> device serial number for TI boards, showing this line instead: >> >> fastboot >> >> This is because seri

[U-Boot] [PATCH v2 1/1] usb: gadget: g_dnl: Sync internal SN variable with env

2017-09-01 Thread Sam Protsenko
Since commit 842778a09104 ("usb: gadget: g_dnl: only set iSerialNumber if we have a serial#") "fastboot devices" stopped to show correct device serial number for TI boards, showing this line instead: fastboot This is because serial# env variable could be set after g_dnl ga

Re: [U-Boot] [PATCH 1/1] usb: gadget: g_dnl: Use serial# variable to set g_dnl_serial

2017-09-01 Thread Sam Protsenko
On 1 September 2017 at 14:58, Sam Protsenko wrote: > On 1 September 2017 at 11:19, Marek Vasut wrote: >> On 08/31/2017 08:20 PM, Sam Protsenko wrote: >>> Since 842778a09104 commit, "fastboot devices" stopped to show correct >>> device serial number for TI boards, showing this line instead: >>> >>

Re: [U-Boot] [PATCH] sunxi: Change SUNXI_GMAC to SUN7I_GMAC in sources

2017-09-01 Thread Mark Kettenis
> From: Lionel Koenig > Date: Thu, 31 Aug 2017 19:21:01 +0200 > > Following 4d43d065db3262f9a9918ba72457bf36dfb8e0bb, > SUNXI_GMAC was still used to configure the code while > SUN7I_GMAC was used in the configuration tools. > > Signed-off-by: Lionel Koenig Reviewed-by: Mark Kettenis This is

Re: [U-Boot] [PATCH 1/3] arm: dts: da850: Migrate da850-evm DTS files from Linux 4.13-RC5

2017-09-01 Thread Adam Ford
On Fri, Sep 1, 2017 at 6:34 AM, Sekhar Nori wrote: > On Sunday 27 August 2017 01:46 AM, Adam Ford wrote: >> A few small additional items are needed to support DM_SPI and >> DM_SERIAL, so those were added to da850-evm-u-boot.dtsi >> >> Signed-off-by: Adam Ford >> --- >> arch/arm/dts/da850-evm-u-b

Re: [U-Boot] [PATCH v2 1/1] usb: gadget: g_dnl: Sync internal SN variable with env

2017-09-01 Thread Sam Protsenko
On 1 September 2017 at 15:00, Sam Protsenko wrote: > Since commit 842778a09104 ("usb: gadget: g_dnl: only set iSerialNumber > if we have a serial#") "fastboot devices" stopped to show correct device > serial number for TI boards, showing this line instead: > > fastboot > >

[U-Boot] [PATCH v3 1/1] usb: gadget: g_dnl: Sync internal SN variable with env

2017-09-01 Thread Sam Protsenko
Since commit 842778a09104 ("usb: gadget: g_dnl: only set iSerialNumber if we have a serial#") "fastboot devices" stopped to show correct device serial number for TI boards, showing this line instead: fastboot This is because serial# env variable could be set after g_dnl ga

Re: [U-Boot] [PATCH 00/23] efi_loader implement missing functions

2017-09-01 Thread Rob Clark
On Thu, Aug 31, 2017 at 10:45 AM, Leif Lindholm wrote: > On Wed, Aug 30, 2017 at 08:59:31AM +0100, Leif Lindholm wrote: >> On Wed, Aug 30, 2017 at 12:03:16AM +0200, Heinrich Schuchardt wrote: >> > I am able to provide a test application that will cover the API >> > functions that I have focused on

Re: [U-Boot] [PATCH 00/23] efi_loader implement missing functions

2017-09-01 Thread Rob Clark
On Thu, Aug 31, 2017 at 10:45 AM, Leif Lindholm wrote: > On Wed, Aug 30, 2017 at 08:59:31AM +0100, Leif Lindholm wrote: >> On Wed, Aug 30, 2017 at 12:03:16AM +0200, Heinrich Schuchardt wrote: >> > I am able to provide a test application that will cover the API >> > functions that I have focused on

Re: [U-Boot] [ANN] U-Boot v2017.09-rc3 released

2017-09-01 Thread Tom Rini
On Tue, Aug 29, 2017 at 02:44:07PM +1000, Jonathan Gray wrote: > On Mon, Aug 28, 2017 at 10:56:52PM -0400, Tom Rini wrote: > > Hey all, > > > > It's release day and v2017.09-rc3 is out. I think there's still a few > > outstanding important bugfixes that need to come in, and probably a few > > mor

Re: [U-Boot] [PATCH] mmc: sunxi: Only update timing mode bit when enabling new timing mode

2017-09-01 Thread Jagan Teki
On Thu, Aug 31, 2017 at 7:36 PM, Jagan Teki wrote: > On Thu, Aug 31, 2017 at 7:34 PM, Maxime Ripard > wrote: >> On Thu, Aug 31, 2017 at 09:57:48PM +0800, Chen-Yu Tsai wrote: >>> When enabling the new mmc timing mode, we inadvertently clear all the >>> remaining bits in the new timing mode registe

Re: [U-Boot] DA850evm SPI Flash Partitions between Linux and U-boot are Inconsistent

2017-09-01 Thread Sekhar Nori
Hi Adam, On Wednesday 30 August 2017 04:07 PM, Adam Ford wrote: > On Wed, Aug 30, 2017 at 12:30 AM, Sekhar Nori wrote: >> On Wednesday 30 August 2017 08:07 AM, Adam Ford wrote: >>> On Tue, Aug 29, 2017 at 8:05 AM, Adam Ford wrote: On Tue, Aug 29, 2017 at 6:41 AM, Sekhar Nori wrote: > O

[U-Boot] [PATCH 1/5] pci: xilinx: Fix doc comments on config space accessors

2017-09-01 Thread Tuomas Tynkkynen
These take the 'struct udevice *' as an argument, not the 'struct xilinx_pcie *` which is a local variable. Fix the comments to match the code. Signed-off-by: Tuomas Tynkkynen --- drivers/pci/pcie_xilinx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pcie_x

[U-Boot] [PATCH 2/5] pci: xilinx: Remove unused field 'hose' from struct xilinx_pcie

2017-09-01 Thread Tuomas Tynkkynen
This field has never been used as the driver has been DM-based since the beginning. Drop it. Signed-off-by: Tuomas Tynkkynen --- drivers/pci/pcie_xilinx.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/pci/pcie_xilinx.c b/drivers/pci/pcie_xilinx.c index e31ba8bd51..4ba32df516 10064

[U-Boot] [PATCH 5/5] pci: Remove unnecessary 'default n' from Kconfig

2017-09-01 Thread Tuomas Tynkkynen
'default n' is the default anyway so it doesn't need to be specified explicitly, and the rest of the file doesn't specify it either anywhere. Drop it. Signed-off-by: Tuomas Tynkkynen --- drivers/pci/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pci/Kconfig b/drivers/pci/Kcon

[U-Boot] [PATCH 4/5] pci: layerscape: Remove unused field 'hose' from struct ls_pcie

2017-09-01 Thread Tuomas Tynkkynen
This field is no longer used since the DM conversion. Drop it. Signed-off-by: Tuomas Tynkkynen --- drivers/pci/pcie_layerscape.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pci/pcie_layerscape.h b/drivers/pci/pcie_layerscape.h index 782e3ab7ad..3a6cecb07d 100644 --- a/drivers/pci/

[U-Boot] [PATCH 3/5] pci: tegra: Remove unused field 'hose' from struct tegra_pcie

2017-09-01 Thread Tuomas Tynkkynen
This field is no longer used since the DM conversion. Drop it. Signed-off-by: Tuomas Tynkkynen --- drivers/pci/pci_tegra.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/pci/pci_tegra.c b/drivers/pci/pci_tegra.c index cb5cf8b043..7d920d423d 100644 --- a/drivers/pci/pci_tegra.c +++

Re: [U-Boot] [PATCH] sunxi: Change SUNXI_GMAC to SUN7I_GMAC in sources

2017-09-01 Thread Jagan Teki
On Thu, Aug 31, 2017 at 10:51 PM, Lionel Koenig wrote: > Following 4d43d065db3262f9a9918ba72457bf36dfb8e0bb, > SUNXI_GMAC was still used to configure the code while > SUN7I_GMAC was used in the configuration tools. > > Signed-off-by: Lionel Koenig > --- > arch/arm/include/asm/arch-sunxi/sys_prot

Re: [U-Boot] QSPI "sf probe ...", "sf read ..." on Altera SoC FPGA

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 5:23 PM, Hannes Schmelzer wrote: > Hi Eldor, > > just found your post in the mailinglist. > > https://lists.denx.de/pipermail/u-boot/2016-December/276491.html > > Reason why i'm searched there is, that i've now excactly same problem as > you. Can you give some details, issu

Re: [U-Boot] DA850evm SPI Flash Partitions between Linux and U-boot are Inconsistent

2017-09-01 Thread Adam Ford
On Fri, Sep 1, 2017 at 9:25 AM, Sekhar Nori wrote: > Hi Adam, > > On Wednesday 30 August 2017 04:07 PM, Adam Ford wrote: >> On Wed, Aug 30, 2017 at 12:30 AM, Sekhar Nori wrote: >>> On Wednesday 30 August 2017 08:07 AM, Adam Ford wrote: On Tue, Aug 29, 2017 at 8:05 AM, Adam Ford wrote: >

Re: [U-Boot] [PATCH] sunxi: Change SUNXI_GMAC to SUN7I_GMAC in sources

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 8:03 PM, Jagan Teki wrote: > On Thu, Aug 31, 2017 at 10:51 PM, Lionel Koenig > wrote: >> Following 4d43d065db3262f9a9918ba72457bf36dfb8e0bb, >> SUNXI_GMAC was still used to configure the code while >> SUN7I_GMAC was used in the configuration tools. >> >> Signed-off-by: Lio

Re: [U-Boot] [PATCH 00/23] efi_loader implement missing functions

2017-09-01 Thread Tom Rini
On Wed, Aug 30, 2017 at 04:16:34AM +0800, Simon Glass wrote: > Hi, > > On 29 August 2017 at 22:16, Rob Clark wrote: > > On Tue, Aug 29, 2017 at 8:57 AM, Leif Lindholm > > wrote: > >> On Tue, Aug 29, 2017 at 02:26:48PM +0200, Alexander Graf wrote: > >>> > > > I would add command > >>> > > > boot

Re: [U-Boot] [PATCH v3] rpi: Enable USB keyboard support

2017-09-01 Thread Tom Rini
On Thu, Aug 31, 2017 at 08:52:34PM +0800, Simon Glass wrote: > Hi Alex, > > On 28 August 2017 at 18:10, Alexander Graf wrote: > > > > > >> Am 26.08.2017 um 19:43 schrieb Simon Glass : > >> > >> This is currently disabled, so USB keyboards are not detected in U-Boot. > >> Enable this option to fix

Re: [U-Boot] [PATCH] arm: am33xx: Make pin multiplexing functions optional

2017-09-01 Thread Tom Rini
On Thu, Aug 31, 2017 at 03:16:17PM +0200, Felix Brack wrote: > Boards using the single-register-pin-controller can configure all > pins by means of the device tree. This renders the implementation of > the two functions set_uart_mux_conf and set_mux_conf_regs obsolete. > Using the weak attribute

[U-Boot] [PATCH v2] sunxi: Fix CONFIG_SUNXI_GMAC references

2017-09-01 Thread Jagan Teki
From: Dave Prue SUNXI_GMAC was still used to configure the code where as the same has been renamed and moved to Kconfig in below commit "sunxi: Move SUNXI_GMAC to Kconfig" (sha1: 4d43d065db3262f9a9918ba72457bf36dfb8e0bb) Signed-off-by: Dave Prue Reviewed-by: Simon Glass Reviewed-by: Jagan Teki

Re: [U-Boot] [PATCH 0/2] Board for QEMU's '-machine virt' on ARM

2017-09-01 Thread Tom Rini
On Wed, Aug 30, 2017 at 10:09:27PM +0100, Peter Robinson wrote: > On Wed, Aug 30, 2017 at 9:31 AM, Tuomas Tynkkynen > wrote: > > Hi, > > > > Sending this out in a slightly unfinished state to gauge if there's > > interest in having this included in U-Boot. Basically this allows > > running U-Boot

[U-Boot] [Patch V2 0/4] Migrate DA850-evm to Driver Model

2017-09-01 Thread Adam Ford
This series adds the DA850-evm device tree and related dependant files, along with enabling DM_SPI, DM_SERIAL, and DM_SPI with DM_SPIFLASH. This is a resend of the original series. The only real change to this series from V1 is the additional adding of MTD PARTS and I2C. Adam Ford (4): spi:

[U-Boot] [Patch V2 2/4] arm: da850-evm: Enable DM and device tree support for da850-evm

2017-09-01 Thread Adam Ford
With the device tree ported and DM compatible drivers, enable: OF_CONTROL, DM_SPI, DM_SPI_FLASH and DM_SERIAL Signed-off-by: Adam Ford --- configs/da850evm_defconfig | 9 +++-- include/configs/da850evm.h | 17 +++-- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a

[U-Boot] [Patch V2 1/4] spi: davinci_spi: Add da830-spi support for DM

2017-09-01 Thread Adam Ford
The DM support is already in the driver, so add da830-spi to the compatible list. Signed-off-by: Adam Ford --- drivers/spi/davinci_spi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c index 291ef95..eda252d 100644 --- a/drivers/spi/davin

[U-Boot] [Patch V2 3/4] arm: da850-evm: Enable MTD Parts

2017-09-01 Thread Adam Ford
There is a discrepency between U-Boot and Linux on the partition map. This enabes the MTD parts to pass MTD partition information from U-Boot to Linux. Linux already has a pending patch to enable MTD PARTS in davinci_all_defconfig Signed-off-by: Adam Ford V2: This patch is new to the series --

[U-Boot] [Patch V2 4/4] ARM: da850-evm: Enable DM_I2C

2017-09-01 Thread Adam Ford
With DM now enabled with the device tree pulled from Linux, we can enable DM_I2C in U-Boot. Signed-off-by: Adam Ford V2: New to series --- arch/arm/dts/da850-evm-u-boot.dtsi | 1 + configs/da850evm_defconfig | 3 +++ include/configs/da850evm.h | 5 +++-- 3 files changed, 7 inser

Re: [U-Boot] Pull request: u-boot-sunxi/master

2017-09-01 Thread Tom Rini
On Tue, Aug 29, 2017 at 12:57:43PM +0530, Jagan Teki wrote: > Hi Tom, > > These fixes need to be in for the release, please pull the same. > > thanks! > Jagan. > > The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409: > > mtdparts: Fix uninitialized scalar usage (2017-

Re: [U-Boot] [GIT PULL] u-boot-uniphier/master

2017-09-01 Thread Tom Rini
On Wed, Aug 30, 2017 at 09:22:33AM +0900, Masahiro Yamada wrote: > Hi Tom, > > Here is a bit volume pull request, but changes > are SoC-specific except the ofnode patch and denali_dt. > The latter is reviewed by Simon. > Applied to u-boot/master, thanks! -- Tom signature.asc Description: Di

Re: [U-Boot] Please pull u-boot-marvell/master

2017-09-01 Thread Tom Rini
On Wed, Aug 30, 2017 at 10:06:30AM +0200, Stefan Roese wrote: > Hi Tom, > > please pull this last minute fix from Chris, which is needed > to get SPI NOR working on current master. > > Thanks, > Stefan > > > The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409: > > mt

Re: [U-Boot] [PULL] Please pull u-boot-imx

2017-09-01 Thread Tom Rini
On Wed, Aug 30, 2017 at 12:35:02PM +0200, Stefano Babic wrote: > Hi Tom, > > please pull from u-boot-imx, thanks ! > > The following changes since commit 90ae53ce1ae665a1b43ecf5ccafc339839392427: > > fastboot: Ensure we treat CONFIG_FASTBOOT_BUF_ADDR as long (2017-08-22 > 08:20:02 -0400) > >

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-01 Thread Fabio Estevam
Hi Stefan, On Wed, Aug 16, 2017 at 3:00 PM, Stefan Agner wrote: > From: Stefan Agner > > This series adds NXP's Serial Download Protocol (SDP) support via > USB for SPL/U-Boot. It allows to download U-Boot via USB from a > (recovered) SPL using the same tools used to download SPL itself > (speci

Re: [U-Boot] Pull request: u-boot-sunxi/master

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 10:12 PM, Tom Rini wrote: > On Tue, Aug 29, 2017 at 12:57:43PM +0530, Jagan Teki wrote: > >> Hi Tom, >> >> These fixes need to be in for the release, please pull the same. >> >> thanks! >> Jagan. >> >> The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac5734

[U-Boot] Please pull u-boot-video/master

2017-09-01 Thread Anatolij Gustschin
Hi Tom, Please pull to fixes for v2017.09. The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409: mtdparts: Fix uninitialized scalar usage (2017-08-26 16:59:24 -0400) are available in the git repository at: git://git.denx.de/u-boot-video.git master for you to fetch c

Re: [U-Boot] Please pull u-boot-video/master

2017-09-01 Thread Tom Rini
On Fri, Sep 01, 2017 at 06:50:46PM +0200, Anatolij Gustschin wrote: > Hi Tom, > > Please pull to fixes for v2017.09. > > The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409: > > mtdparts: Fix uninitialized scalar usage (2017-08-26 16:59:24 -0400) > > are available in

[U-Boot] Pull request: u-boot-sunxi/master

2017-09-01 Thread Jagan Teki
Hi Tom, Please pull these fixes. thanks! Jagan. The following changes since commit ead3697d7ec491c055fe546b3a45bcfba45fa022: mmc: sunxi: fix legacy MMC initialisation (2017-08-28 22:38:05 +0530) are available in the git repository at: git://git.denx.de/u-boot-sunxi.git master for you to

Re: [U-Boot] [PATCH v2] sunxi: Fix CONFIG_SUNXI_GMAC references

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 8:53 PM, Jagan Teki wrote: > From: Dave Prue > > SUNXI_GMAC was still used to configure the code where as the > same has been renamed and moved to Kconfig in below commit > "sunxi: Move SUNXI_GMAC to Kconfig" > (sha1: 4d43d065db3262f9a9918ba72457bf36dfb8e0bb) > > Signed-off

Re: [U-Boot] [Patch V2 1/4] spi: davinci_spi: Add da830-spi support for DM

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 9:41 PM, Adam Ford wrote: > The DM support is already in the driver, so add > da830-spi to the compatible list. > > Signed-off-by: Adam Ford > --- I think you missed, last version r-w-b ? thanks! -- Jagan Teki Free Software Engineer | www.openedev.com U-Boot, Linux | Ups

Re: [U-Boot] [Patch V2 2/4] arm: da850-evm: Enable DM and device tree support for da850-evm

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 9:41 PM, Adam Ford wrote: > With the device tree ported and DM compatible drivers, enable: > OF_CONTROL, DM_SPI, DM_SPI_FLASH and DM_SERIAL > > Signed-off-by: Adam Ford > --- Reviewed-by: Jagan Teki thanks! -- Jagan Teki Free Software Engineer | www.openedev.com U-Boot,

Re: [U-Boot] [Patch V2 3/4] arm: da850-evm: Enable MTD Parts

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 9:41 PM, Adam Ford wrote: > There is a discrepency between U-Boot and Linux on the partition map. > This enabes the MTD parts to pass MTD partition information from U-Boot to > Linux. Linux already has a pending patch to enable MTD PARTS in > davinci_all_defconfig > > Signe

Re: [U-Boot] [Patch V2 4/4] ARM: da850-evm: Enable DM_I2C

2017-09-01 Thread Jagan Teki
On Fri, Sep 1, 2017 at 9:41 PM, Adam Ford wrote: > With DM now enabled with the device tree pulled from Linux, we can > enable DM_I2C in U-Boot. > > Signed-off-by: Adam Ford > > V2: New to series > --- Reviewed-by: Jagan Teki thanks! -- Jagan Teki Free Software Engineer | www.openedev.com U-B

Re: [U-Boot] Pull request: u-boot-sunxi/master

2017-09-01 Thread Tom Rini
On Fri, Sep 01, 2017 at 10:40:59PM +0530, Jagan Teki wrote: > Hi Tom, > > Please pull these fixes. > > thanks! > Jagan. > > The following changes since commit ead3697d7ec491c055fe546b3a45bcfba45fa022: > > mmc: sunxi: fix legacy MMC initialisation (2017-08-28 22:38:05 +0530) > > are availabl

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-01 Thread Stefan Agner
On 2017-09-01 09:48, Fabio Estevam wrote: > Hi Stefan, > > On Wed, Aug 16, 2017 at 3:00 PM, Stefan Agner wrote: >> From: Stefan Agner >> >> This series adds NXP's Serial Download Protocol (SDP) support via >> USB for SPL/U-Boot. It allows to download U-Boot via USB from a >> (recovered) SPL usin

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-01 Thread Fabio Estevam
Hi Stefan, On Fri, Sep 1, 2017 at 3:19 PM, Stefan Agner wrote: > That is the issue I am describing here: > https://lists.denx.de/pipermail/u-boot/2017-August/301952.html > > Either enter recovery mode explicitly (by setting the BMODE pins or > using the bmode command) On imx6qsabresd it is not

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-01 Thread Fabio Estevam
On Fri, Sep 1, 2017 at 3:54 PM, Fabio Estevam wrote: > I have tested this method and it works, thanks. > > Do you plan to usptream this method? Or I can also put your patch as part of my series that adds SDP support for imx6qsabresd if you prefer. ___

Re: [U-Boot] Please pull u-boot-video/master

2017-09-01 Thread Tom Rini
On Fri, Sep 01, 2017 at 12:57:56PM -0400, Tom Rini wrote: > On Fri, Sep 01, 2017 at 06:50:46PM +0200, Anatolij Gustschin wrote: > > > Hi Tom, > > > > Please pull to fixes for v2017.09. > > > > The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409: > > > > mtdparts: Fix u

Re: [U-Boot] [U-Boot, 1/2] configs: Migrate all of the existing USB symbols, except fastboot

2017-09-01 Thread Tom Rini
On Fri, Aug 25, 2017 at 05:50:26PM -0400, Tom Rini wrote: > This syncs all of the currently Kconfig'd symbols out of the headers and > into the defconfig files. This has two exceptions, first am335x_evm > needs to be converted to DM in SPL and then it can stop undef'ing > CONFIG_DM_USB. Leaving

Re: [U-Boot] [U-Boot, 2/2] Kconfig: Migrate all of cmd/fastboot/Kconfig to defconfigs

2017-09-01 Thread Tom Rini
On Fri, Aug 25, 2017 at 05:50:27PM -0400, Tom Rini wrote: Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH V2] imx: mx7: Add support for USB and normal boot modes

2017-09-01 Thread Troy Kisky
On 8/31/2017 4:13 PM, Troy Kisky wrote: > On 8/31/2017 4:04 PM, Eric Nelson wrote: >> On 08/31/2017 03:53 PM, Troy Kisky wrote: >>> On 8/31/2017 2:28 PM, Troy Kisky wrote: >>> Maybe if you change the WDOG pinmux it might work ? >>> >>> Worked for me >>> >>> => mm.l 302c >>>

Re: [U-Boot] [PATCH] misc: Kconfig: Add SPL_I2C_EEPROM option

2017-09-01 Thread Tom Rini
On Fri, Sep 01, 2017 at 04:01:58PM +0800, Yang, Wenyou wrote: > Hi, > > Do you have any comments? > > > On 2017/8/3 9:00, Wenyou Yang wrote: > >This option is an SPL-variant of the I2C_EEPROM option to enable > >the driver for generic I2C-attached EEPROMs for SPL. > > > >Signed-off-by: Wenyou Ya

Re: [U-Boot] [U-Boot, V3] Convert CONFIG_NAND_OMAP_GPMC et al to Kconfig

2017-09-01 Thread Tom Rini
On Sat, Aug 12, 2017 at 09:38:08PM -0500, Adam Ford wrote: > This converts the following to Kconfig: >CONFIG_NAND_OMAP_GPMC >CONFIG_NAND_OMAP_GPMC_PREFETCH >CONFIG_NAND_OMAP_ELM >CONFIG_SYS_NAND_BUSWIDTH_16BIT >CONFIG_SPL_NAND_AM33XX_BCH >CONFIG_SPL_NAND_SIMPLE (ARCH_OMAP2P

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-01 Thread Stefan Agner
On September 1, 2017 12:25:44 PM PDT, Fabio Estevam wrote: >On Fri, Sep 1, 2017 at 3:54 PM, Fabio Estevam >wrote: > >> I have tested this method and it works, thanks. >> >> Do you plan to usptream this method? > >Or I can also put your patch as part of my series that adds SDP >support for imx6q

Re: [U-Boot] [U-Boot, V3] Convert CONFIG_NAND_OMAP_GPMC et al to Kconfig

2017-09-01 Thread Adam Ford
On Fri, Sep 1, 2017 at 4:54 PM, Tom Rini wrote: > On Sat, Aug 12, 2017 at 09:38:08PM -0500, Adam Ford wrote: > >> This converts the following to Kconfig: >>CONFIG_NAND_OMAP_GPMC >>CONFIG_NAND_OMAP_GPMC_PREFETCH >>CONFIG_NAND_OMAP_ELM >>CONFIG_SYS_NAND_BUSWIDTH_16BIT >>CONFIG_SP

[U-Boot] [PATCH V4] Convert CONFIG_NAND_OMAP_GPMC et al to Kconfig

2017-09-01 Thread Adam Ford
This converts the following to Kconfig: CONFIG_NAND_OMAP_GPMC CONFIG_NAND_OMAP_GPMC_PREFETCH CONFIG_NAND_OMAP_ELM CONFIG_SPL_NAND_AM33XX_BCH CONFIG_SPL_NAND_SIMPLE (ARCH_OMAP2PLUS only) Signed-off-by: Adam Ford --- V4: Fix missing data from V2-V3 V3: Remove selection from CMD_NAND

[U-Boot] [PATCH] ARM: socfpga: remove unneeded NAND config options

2017-09-01 Thread Masahiro Yamada
CONFIG_NAND_DENALI select's CONFIG_SYS_NAND_SELF_INIT, so the NAND initialization process is driven by the driver itself. CONFIG_SYS_NAND_MAX_CHIPS and CONFIG_SYS_NAND_BASE are unused. Signed-off-by: Masahiro Yamada --- include/configs/socfpga_common.h | 2 -- 1 file changed, 2 deletions(-) di

Re: [U-Boot] [U-Boot, 1/2] Configs: Migrate I2C_BUS_MAX to CONFIG_SYS_I2C_BUS_MAX

2017-09-01 Thread Tom Rini
On Fri, Aug 11, 2017 at 06:39:13AM -0500, Adam Ford wrote: > For consistency with other platforms and in preparation of Kconfig > migration, let's change Several TI platforms that use I2C_BUS_MAX > to CONFIG_SYS_I2C_BUS_MAX > > Signed-off-by: Adam Ford Applied to u-boot/master, thanks! -- Tom

Re: [U-Boot] [U-Boot, 2/2] Convert CONFIG_SYS_I2C_BUS_MAX to Kconfig

2017-09-01 Thread Tom Rini
On Fri, Aug 11, 2017 at 06:39:34AM -0500, Adam Ford wrote: > This converts the following to Kconfig: >CONFIG_SYS_I2C_BUS_MAX > > Signed-off-by: Adam Ford > Reviewed-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] Convert CONFIG_SPL_OMAP3_ID_NAND to Kconfig

2017-09-01 Thread Tom Rini
On Fri, Aug 11, 2017 at 08:51:20AM -0500, Adam Ford wrote: > This converts the following to Kconfig: >CONFIG_SPL_OMAP3_ID_NAND > > Signed-off-by: Adam Ford > Reviewed-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] Convert CONFIG_BCH to Kconfig

2017-09-01 Thread Tom Rini
On Fri, Aug 11, 2017 at 09:46:05AM -0500, Adam Ford wrote: > This converts the following to Kconfig: >CONFIG_BCH > > Signed-off-by: Adam Ford > Reviewed-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature __