[U-Boot] [PATCH v2 16/37] binman: Add a function to decode an ELF file

2019-07-08 Thread Simon Glass
Add a function which decodes an ELF file, working out where in memory each part of the data should be written. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/README | 4 +++ tools/binman/elf.py | 76 tools/binman/elf_test.py

[U-Boot] [PATCH v2 21/37] binman: Allow text directly in the node

2019-07-08 Thread Simon Glass
At present text entries use an indirect method to specify the text to use, with a label pointing to the text itself. Allow the text to be directly written into the node. This is more convenient in cases where the text is constant. Signed-off-by: Simon Glass --- Changes in v2: None

[U-Boot] [PATCH v2 25/37] binman: Use tools compression function for blob handling

2019-07-08 Thread Simon Glass
Avoid duplicate code here by using the new compression function in the tools module. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/etype/blob.py | 16 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/tools/binman/etype/blob.py

[U-Boot] [PATCH v2 20/37] binman: Update entry.SetOffsetSize to be optional

2019-07-08 Thread Simon Glass
At present this function always sets both the offset and the size of entries. But in some cases we want to set only one or the other, for example with the forthcoming ifwi entry, where we only set the offset. Update the function to handle this. Signed-off-by: Simon Glass --- Changes in v2: None

[U-Boot] [PATCH v2 18/37] binman: Assume Intel descriptor is at the start of the image

2019-07-08 Thread Simon Glass
At present binman requires that the Intel descriptor has an explicit offset. Generally this is 0 since the descriptor is at the start of the image. Add a default to handle this, so users don't need to specify the offset. Signed-off-by: Simon Glass --- Changes in v2: None

[U-Boot] [PATCH v2 12/37] binman: Tidy up help for --indir

2019-07-08 Thread Simon Glass
The current help is confusing. Adjust it to indicate what the flag actually does. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/cmdline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binman/cmdline.py b/tools/binman/cmdline.py index

[U-Boot] [PATCH v2 31/37] binman: Pass the toolpath to tests

2019-07-08 Thread Simon Glass
Tools like ifwitool may not be available in the PATH, but are available in the build. These tools may be needed by tests, so allow tests to use the --toolpath flag. Also use this flag with travis. Signed-off-by: Simon Glass --- Changes in v2: None .travis.yml| 2 +- test/run

[U-Boot] [PATCH v2 09/37] binman: Add a --toolpath option to set the tool search path

2019-07-08 Thread Simon Glass
Sometimes tools used by binman may not be in the normal PATH search path, such as when the tool is built by the U-Boot build itself (e.g. mkimage). Provide a way to specify an additional search path for tools. The flag can be used multiple times. Update the help to describe this option.

[U-Boot] [PATCH v2 14/37] binman: Detect skipped tests

2019-07-08 Thread Simon Glass
If tests are skipped we should ideally exit with an error, since there may be a missing dependency. However at present this is not desirable since it breaks travis tests. For now, just report the skips. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/binman.py | 9 +++-- 1

[U-Boot] [PATCH v2 15/37] binman: Add a function to create a sample ELF file

2019-07-08 Thread Simon Glass
It is useful to create an ELF file for testing purposes, with just the right attributes used by the test. Add a function to handle this, along with a test that it works correctly. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/elf.py | 98

[U-Boot] [PATCH v2 07/37] binman: Add coverage tools info for Python 3

2019-07-08 Thread Simon Glass
Test coverage with Python 3 requires a new package. Add details about this. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binman/README b/tools/binman/README index ac193f16cf7..decca47bbf3

[U-Boot] [PATCH v2 11/37] binman: Add missing comments toentry

2019-07-08 Thread Simon Glass
At present GetOffsets() lacks a function comment. Add one. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/entry.py | 15 +++ 1 file changed, 15 insertions(+) diff --git a/tools/binman/entry.py b/tools/binman/entry.py index d842d89dd66..e8d0adec1e9 100644 ---

[U-Boot] [PATCH v2 05/37] binman: Fix comment in bsection.GetEntries()

2019-07-08 Thread Simon Glass
This comment is out of date as it does not correctly describe the return value. Fix it. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/bsection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/binman/bsection.py b/tools/binman/bsection.py index

[U-Boot] [PATCH v2 06/37] binman: Correct two typos in function names in ftest

2019-07-08 Thread Simon Glass
Two functions have incorrect names. Fix them. Signed-off-by: Simon Glass --- Changes in v2: None tools/binman/ftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index cc57ef3e04a..46f669e73b4 100644 ---

[U-Boot] [PATCH v2 04/37] tools: Drop duplicate raise_on_error argument

2019-07-08 Thread Simon Glass
If kwargs contains raise_on_error then this function generates an error due to a duplicate argument. Fix this. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/patman/command.py

[U-Boot] [PATCH v2 01/37] x86: Add ifwitool for Intel Integrated Firmware Image

2019-07-08 Thread Simon Glass
Some Intel SoCs from about 2016 boot using an internal microcontroller via an 'IFWI' image. This is a special format which can hold firmware images. In U-Boot's case it holds u-boot-tpl.bin. Add this tool, taken from coreboot, so that we can build bootable images on apollolake SoCs. This tool

[U-Boot] [PATCH v2 02/37] cbfs: Add an enum and comment for the magic number

2019-07-08 Thread Simon Glass
This field is not commented in the original file. Add a comment. Signed-off-by: Simon Glass --- Changes in v2: None include/cbfs.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/cbfs.h b/include/cbfs.h index bd1bf75bbfc..f2ede25f517 100644 --- a/include/cbfs.h +++

[U-Boot] [PATCH v2 03/37] cbfs: Rename checksum to attributes_offset

2019-07-08 Thread Simon Glass
It seems that this field has been renamed in later version of coreboot. Update it. Signed-off-by: Simon Glass --- Changes in v2: None fs/cbfs/cbfs.c | 4 ++-- include/cbfs.h | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/fs/cbfs/cbfs.c b/fs/cbfs/cbfs.c index

[U-Boot] [PATCH v2 00/37] binman: Add CBFS support

2019-07-08 Thread Simon Glass
CBFS (Coreboot Filesystem) is a simple ROM-based filesystem used for locating data needed during booting. It has particular features for x86 such as defining a boot block at the top of the ROM image. At run-time, boot loaders can locate files in the ROM by searching for a header and magic strings

Re: [U-Boot] [PATCH] net: mvpp2: support setting hardware addresses from ethernet core

2019-07-08 Thread Joe Hershberger
On Sat, Jun 1, 2019 at 1:39 PM Joe Hershberger wrote: > > On Wed, May 8, 2019 at 2:36 PM Matt Pelland wrote: > > > > mvpp2 already has support for setting MAC addresses but this > > functionality was not exposed to the ethernet core. This commit exposes > > this functionality so that MAC address

Re: [U-Boot] What is the status of rk3066 support?

2019-07-08 Thread Arthur Helfstein Fragoso
On 7/8/19 12:50 PM, Arthur Helfstein Fragoso wrote: > Hello, > > > I found Paweł Jarosz sent patches for rk3066 support: > https://lists.denx.de/pipermail/u-boot/2017-August/302895.html > > I tried to search for its status at the patchwork tool mentioned in the > website, but I could not find

Re: [U-Boot] [PATCH] drivers: net: phy: Ignore PHY ID 0 during PHY probing

2019-07-08 Thread Joe Hershberger
On Wed, Jul 3, 2019 at 4:01 AM Alex Marginean wrote: > > Hi Bin, > > On 7/3/2019 10:39 AM, Bin Meng wrote: > > Hi Alex, > > > > On Wed, Jul 3, 2019 at 3:09 AM Alex Marginean > > wrote: > >> > >> On 7/1/2019 11:15 AM, Bin Meng wrote: > >>> Hi Alex, > >>> > >>> On Wed, Jun 19, 2019 at 5:07 PM

Re: [U-Boot] [PATCH] riscv: image: save space on the magic number field

2019-07-08 Thread Atish Patra
On Mon, 2019-07-08 at 11:27 +, Chester Lin wrote: > Change the symbol from "RISCV" to "RSCV" so the magic number can be > 32-bit > long, which is consistent with other architectures. This change can > also > be compatible with grub because grub defines this field as 32-bit > long. > It is

[U-Boot] Pull request for UEFI sub-system for v2019.10-rc1

2019-07-08 Thread Heinrich Schuchardt
The following changes since commit 1f83431f0053f6fb20c511c391ffc687433848cf: board: amlogic: add mailing-list to MAINTAINERS (2019-07-04 11:36:52 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2019-10-rc1 for you to fetch

Re: [U-Boot] [PATCH v2 7/8] board: Add new slimbootloader board

2019-07-08 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Tuesday, July 2, 2019 7:14 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v2 7/8] board: Add new slimbootloader board > > Hi Aiden, > > On Wed, Jun 26, 2019 at 7:21

Re: [U-Boot] [PATCH v2 3/8] x86: slimbootloader: Add memory configuration

2019-07-08 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Tuesday, July 2, 2019 7:13 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v2 3/8] x86: slimbootloader: Add memory configuration > > Hi Aiden, > > On Wed, Jun 26,

[U-Boot] What is the status of rk3066 support?

2019-07-08 Thread Arthur Helfstein Fragoso
Hello, I found Paweł Jarosz sent patches for rk3066 support: https://lists.denx.de/pipermail/u-boot/2017-August/302895.html I tried to search for its status at the patchwork tool mentioned in the website, but I could not find it listed. I can find some code that contains the "rk3066" string in

Re: [U-Boot] [PATCH v2 4/8] x86: slimbootloader: Add serial driver

2019-07-08 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Tuesday, July 2, 2019 7:14 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v2 4/8] x86: slimbootloader: Add serial driver > > Hi Aiden, > > On Wed, Jun 26, 2019 at

Re: [U-Boot] [PATCH v2 2/8] x86: slimbootloader: Add a function to access HOB

2019-07-08 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Tuesday, July 2, 2019 7:13 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v2 2/8] x86: slimbootloader: Add a function to access > HOB > > Hi Aiden, > > On Wed, Jun

Re: [U-Boot] [PATCH v2 1/8] x86: Add new slimbootloader CPU type

2019-07-08 Thread Park, Aiden
Hi Bin, > -Original Message- > From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Tuesday, July 2, 2019 7:13 AM > To: Park, Aiden > Cc: U-Boot Mailing List ; Simon Glass > > Subject: Re: [PATCH v2 1/8] x86: Add new slimbootloader CPU type > > Hi Aiden, > > On Wed, Jun 26, 2019 at 7:15

Re: [U-Boot] [PATCH 4/4 v3] test: dm: add a test for MDIO MUX DM uclass

2019-07-08 Thread Alex Marginean
Hi Bin, On 7/8/2019 10:40 AM, Bin Meng wrote: On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: Adds a test using a makeshift MDIO MUX. The test is based on the existing MDIO test. It uses the last emulated PHY register to verify MUX selection. Signed-off-by: Alex Marginean ---

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Steve McIntyre
On Mon, Jul 08, 2019 at 11:18:56AM +0100, Leif Lindholm wrote: >On Mon, Jul 08, 2019 at 12:13:07PM +0200, Daniel Kiper wrote: >> > I don't know yet - UEFI Asia plugfest date hasn't been decided yet, >> > and is likely to end up around the same time. And actually another >> > unrelated event too.

Re: [U-Boot] [PATCH 2/4 v3] doc: bindings: Add description for MDIO MUX dts nodes

2019-07-08 Thread Alex Marginean
On 7/8/2019 10:40 AM, Bin Meng wrote: On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: Adds a short bindings document describing the expected structure of a MDIO MUX dts node. This is based on Linux binding and the example is in fact copied from there. Signed-off-by: Alex

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Alexander Graf
On 08.07.19 12:13, Daniel Kiper wrote: Sorry for late reply but I am busy... On Fri, Jun 28, 2019 at 11:42:06AM +0100, Leif Lindholm wrote: On Fri, Jun 28, 2019 at 12:17:54PM +0200, Alexander Graf wrote: On 28.06.19 12:03, Heinrich Schuchardt wrote: I would be interested in joining. I hope

Re: [U-Boot] [PATCH v3] ARM: imx6: DHCOM i.MX6 PDK: Switch to DM for I2C

2019-07-08 Thread Marek Vasut
On 7/8/19 3:04 PM, Ludwig Zenz wrote: > This patch enables DM I2C for DHCOM i.MX6 PDK2 boards and > removes non DM I2C code. The I2C EEPROM with ethaddr (MAC) > is defined in the device tree. Use UCLASS_I2C_EEPROM > to find the device by fixed hardware path and read the ethaddr. > > Tested with

[U-Boot] [PATCH 1/6] net: phy: mv88e61xx: rework to enable detection of 88E6071 devices

2019-07-08 Thread Anatolij Gustschin
Extend the driver to init switch register offsets from variables instead of compile time macros and enable 88E6071 detection. Ethernet transfer (e.g. tftp) does not work yet, so enable the registration of the 'indirect mii' bus for easier PHY register access by 'mii' command. Signed-off-by:

[U-Boot] [PATCH v3] ARM: imx6: DHCOM i.MX6 PDK: Switch to DM for I2C

2019-07-08 Thread Ludwig Zenz
This patch enables DM I2C for DHCOM i.MX6 PDK2 boards and removes non DM I2C code. The I2C EEPROM with ethaddr (MAC) is defined in the device tree. Use UCLASS_I2C_EEPROM to find the device by fixed hardware path and read the ethaddr. Tested with DHCOM i.MX6dl and DHCOM i.MX6q. Signed-off-by:

[U-Boot] [PATCH 5/6] net: phy: mv88e61xx: register phy_driver struct for 88E6071

2019-07-08 Thread Anatolij Gustschin
Support probing and init for 88E6071 switch. Signed-off-by: Anatolij Gustschin --- drivers/net/phy/mv88e61xx.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/phy/mv88e61xx.c b/drivers/net/phy/mv88e61xx.c index 6d10292f11..b33ad86a90 100644 ---

[U-Boot] [PATCH 4/6] net: phy: mv88E61xx: add config option for mv88E6071 support

2019-07-08 Thread Anatolij Gustschin
Signed-off-by: Anatolij Gustschin --- drivers/net/phy/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index 2a3da068c9..097b499ba3 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig @@ -50,6 +50,13 @@ config

[U-Boot] [PATCH 6/6] net: phy: fix switch vendor name

2019-07-08 Thread Anatolij Gustschin
Fix vendor name in MV88E61xx option description. Signed-off-by: Anatolij Gustschin --- drivers/net/phy/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index 097b499ba3..94386b74ba 100644 --- a/drivers/net/phy/Kconfig

[U-Boot] [PATCH 2/6] net: phy: mv88e61xx: add CPU port parameter init for 88E6071

2019-07-08 Thread Anatolij Gustschin
On 88E6071 chip the port status register bit field offsets for duplex and link bits differ. Extend the driver to use 88E6071 specific offset values. The width of bit fields for speed status differ, too. Adapt for proper port speed detection on 88E6071. Signed-off-by: Anatolij Gustschin ---

[U-Boot] [PATCH 3/6] net: phy: mv88E61xx: fix ENERGY_DET init for mv88E6071

2019-07-08 Thread Anatolij Gustschin
On mv88E6071 the 'EDet' field offset, width and sense control bits are different, adjust the driver to init the PHY control register as needed. This fixes not working link detection and tftp transfers. Signed-off-by: Anatolij Gustschin --- drivers/net/phy/mv88e61xx.c | 20 +---

[U-Boot] [PATCH 0/6] Extend mv88e61xx driver to support 88E6071

2019-07-08 Thread Anatolij Gustschin
This series adds support for 88E6071 switches in the mv88e61xx driver. Anatolij Gustschin (6): net: phy: mv88e61xx: rework to enable detection of 88E6071 devices net: phy: mv88e61xx: add CPU port parameter init for 88E6071 net: phy: mv88E61xx: fix ENERGY_DET init for mv88E6071 net: phy:

Re: [U-Boot] [PATCH v2] ARM: imx6: DHCOM i.MX6 PDK: Switch to DM for I2C

2019-07-08 Thread Ludwig Zenz
On 7/8/19 14:50 Marek Vasut wrote: > On 7/8/19 10:21 AM, Ludwig Zenz wrote: > > On 7/5/19 14:24 PM, Marek Vasut wrote: > >> > >> On 7/5/19 12:46 PM, Ludwig Zenz wrote: > >> [...] > >> > >>> static int setup_dhcom_mac_from_fuse(void) > >>> { > >>> + struct udevice *dev; > >>> unsigned char

Re: [U-Boot] [PATCH] test/py: avb: Move AVB test to android dir

2019-07-08 Thread Sam Protsenko
On Sat, Jul 6, 2019 at 11:32 PM Sam Protsenko wrote: > > Hi Simon, > > On Sat, Jul 6, 2019 at 7:53 PM Simon Glass wrote: > > > > Hi, > > > > On Tue, 2 Jul 2019 at 12:18, Sam Protsenko > > wrote: > > > > > > Signed-off-by: Sam Protsenko > > > --- > > > test/py/tests/{ =>

Re: [U-Boot] [PATCH v2] ARM: imx6: DHCOM i.MX6 PDK: Switch to DM for I2C

2019-07-08 Thread Marek Vasut
On 7/8/19 10:21 AM, Ludwig Zenz wrote: > On 7/5/19 14:24 PM, Marek Vasut wrote: >> >> On 7/5/19 12:46 PM, Ludwig Zenz wrote: >> [...] >> >>> static int setup_dhcom_mac_from_fuse(void) >>> { >>> + struct udevice *dev; >>> unsigned char enetaddr[6]; >>> int ret; >>> >>> @@ -228,13

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Peter Robinson
> Quick poll: who would be interested in a U-Boot/EBBR plugfest event > collocates with ELC-EU this year (week of 28th Oct)? > > In the EBBR meetings we’ve tossed around the idea of an U-Boot/EBBR plugfest > to work out compatibility issues between OS distros and upstream U-Boot SBC > support.

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Peter Robinson
On Fri, Jun 28, 2019 at 2:15 PM Neil Armstrong wrote: > > On 28/06/2019 10:19, Grant Likely wrote: > > Quick poll: who would be interested in a U-Boot/EBBR plugfest event > > collocates with ELC-EU this year (week of 28th Oct)? > > > > In the EBBR meetings we’ve tossed around the idea of an

Re: [U-Boot] [RFC 2/2] sandbox: Update dts files

2019-07-08 Thread Tom Rini
On Sat, Jul 06, 2019 at 11:16:42AM -0600, Simon Glass wrote: > Hi Tom, > > On Wed, 26 Jun 2019 at 15:33, Tom Rini wrote: > > > > With a more modern dtc we now get lots of warnings about problems with > > the sandbox dts files and then in turn the DM tests. Start addressing > > these warnings by

Re: [U-Boot] [PATCH v5 00/10] spi: Add Atmel QuadSPI driver

2019-07-08 Thread Eugen.Hristev
On 29.06.2019 17:55, Jagan Teki wrote: > Hi Eugen, > > On Tue, Jun 25, 2019 at 9:10 PM Jagan Teki wrote: >> >> On Tue, Jun 25, 2019 at 5:05 PM wrote: >>> >>> Hello Jagan, >>> >>> I can only take these patches through u-boot-atmel tree if you >>> Ack/Review them. >>> Otherwise you can

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Daniel Kiper
On Mon, Jul 08, 2019 at 11:18:56AM +0100, Leif Lindholm wrote: > On Mon, Jul 08, 2019 at 12:13:07PM +0200, Daniel Kiper wrote: > > > I don't know yet - UEFI Asia plugfest date hasn't been decided yet, > > > and is likely to end up around the same time. And actually another > > > unrelated event

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Daniel Kiper
Sorry for late reply but I am busy... On Fri, Jun 28, 2019 at 11:42:06AM +0100, Leif Lindholm wrote: > On Fri, Jun 28, 2019 at 12:17:54PM +0200, Alexander Graf wrote: > > On 28.06.19 12:03, Heinrich Schuchardt wrote: > > > I would be interested in joining. I hope that for the plugfest no ELC > >

Re: [U-Boot] [PATCH 2/2] Add i.MX7D based Meerkat96 board support

2019-07-08 Thread Manivannan Sadhasivam
On Mon, Jul 08, 2019 at 05:59:04PM +0800, Shawn Guo wrote: > On Mon, Jul 08, 2019 at 02:42:54PM +0530, Manivannan Sadhasivam wrote: > > Hi Shawn, > > > > Thanks for the patch! > > > > On Sun, Jul 07, 2019 at 08:59:55PM +0800, Shawn Guo wrote: > > > The Meerkat96 board, based on the NXP i.MX7D

Re: [U-Boot] U-Boot/EBBR plugfest at ELC-EU?

2019-07-08 Thread Leif Lindholm
On Mon, Jul 08, 2019 at 12:13:07PM +0200, Daniel Kiper wrote: > > I don't know yet - UEFI Asia plugfest date hasn't been decided yet, > > and is likely to end up around the same time. And actually another > > unrelated event too. > > > > Certainly, Lyon is a quite convenient train journey from

Re: [U-Boot] [PATCH V2 18/51] imx8m: add clk support for i.MX8MM

2019-07-08 Thread Lukasz Majewski
Hi Peng, > > Subject: Re: [U-Boot] [PATCH V2 18/51] imx8m: add clk support for > > i.MX8MM > > > > Hi Peng, > > > > > Introduce clk implementation for i.MX8MM, including pll > > > configuration, ccm configuration. Export get_root_clk for CLK > > > UCLASS driver usage. > > > > > >

Re: [U-Boot] [PATCH V2 1/2] watchdog: Split WDT from SPL_WDT

2019-07-08 Thread Suniel Mahesh
On 02/07/19 01:55, Marek Vasut wrote: > On 7/1/19 8:45 AM, Suniel Mahesh wrote: >> Hi Marek, >> >> May I know if this patch series is still under review ? > > I guess Stefano is taking them for next ... or ? > Hi Marek, Because of this change set applied to u-boot, this patch might not apply,

Re: [U-Boot] [PATCH 2/2] Add i.MX7D based Meerkat96 board support

2019-07-08 Thread Shawn Guo
On Mon, Jul 08, 2019 at 02:42:54PM +0530, Manivannan Sadhasivam wrote: > Hi Shawn, > > Thanks for the patch! > > On Sun, Jul 07, 2019 at 08:59:55PM +0800, Shawn Guo wrote: > > The Meerkat96 board, based on the NXP i.MX7D SoC, is a member of > > 96Boards community and complies with all Consumer

Re: [U-Boot] [PATCH V2 18/51] imx8m: add clk support for i.MX8MM

2019-07-08 Thread Peng Fan
> Subject: Re: [U-Boot] [PATCH V2 18/51] imx8m: add clk support for i.MX8MM > > Hi Peng, > > > Introduce clk implementation for i.MX8MM, including pll configuration, > > ccm configuration. Export get_root_clk for CLK UCLASS driver usage. > > > > Signed-off-by: Peng Fan > > --- > >

Re: [U-Boot] [PATCH 2/2] Add i.MX7D based Meerkat96 board support

2019-07-08 Thread Manivannan Sadhasivam
Hi Shawn, Thanks for the patch! On Sun, Jul 07, 2019 at 08:59:55PM +0800, Shawn Guo wrote: > The Meerkat96 board, based on the NXP i.MX7D SoC, is a member of > 96Boards community and complies with all Consumer Edition board > specifications. > > https://www.novtech.com/products/meerkat96.html >

Re: [U-Boot] [PATCH V2 18/51] imx8m: add clk support for i.MX8MM

2019-07-08 Thread Lukasz Majewski
Hi Peng, > Introduce clk implementation for i.MX8MM, including pll configuration, > ccm configuration. Export get_root_clk for CLK UCLASS driver usage. > > Signed-off-by: Peng Fan > --- > arch/arm/include/asm/arch-imx8m/clock.h| 3 + > arch/arm/include/asm/arch-imx8m/clock_imx8mm.h |

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Peng Fan
> Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > On 08.07.19 09:47, Peng Fan wrote: > > Hi Lukasz, > > > >> Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > >> > >> Hi Peng, > >> > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > Hi Peng, > > >

Re: [U-Boot] [PATCH V2 00/51] Support i.MX8MM/N

2019-07-08 Thread Peng Fan
> Subject: Re: [U-Boot] [PATCH V2 00/51] Support i.MX8MM/N > > Hi Peng, > > On 08.07.19 03:38, Peng Fan wrote: > > This patchset is to support i.MX8MM/8MN with some update in ddr > > settings and ddr driver update. > > > > V2: > > Fix build break, add Cc for some patches, and drop CCF select in

Re: [U-Boot] [PATCH V2 00/51] Support i.MX8MM/N

2019-07-08 Thread Schrempf Frieder
Hi Peng, On 08.07.19 03:38, Peng Fan wrote: > This patchset is to support i.MX8MM/8MN with some update > in ddr settings and ddr driver update. > > V2: > Fix build break, add Cc for some patches, and drop CCF select in i.MX8MM > Fix script to remove srctree in tools/imx8m_image.sh > Fix License

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Schrempf Frieder
On 08.07.19 09:47, Peng Fan wrote: > Hi Lukasz, > >> Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N >> >> Hi Peng, >> Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N Hi Peng, > From: Peng Fan > > This patchset is to support i.MX8MM/8MN with some

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

2019-07-08 Thread Stefan Roese
Hi Tom, On 05.07.19 17:29, Daniel Schwierzeck wrote: Hi Tom, please pull a fix for network instability on MT7688 Gardena Smart Gateway. This should go into 2019.07, thanks. Could you please pull this patch into the upcoming release via the pull request from Daniel? Thanks, Stefan The

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Peng Fan
> Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > Hi Peng, > > > Hi Lukasz, > > > > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > > > Hi Peng, > > > > > > > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > > > > > > > Hi Peng, > > > > > > > > > > >

Re: [U-Boot] [PATCH v2] ARM: imx6: DHCOM i.MX6 PDK: Switch to DM for I2C

2019-07-08 Thread Ludwig Zenz
On 7/5/19 14:24 PM, Marek Vasut wrote: > > On 7/5/19 12:46 PM, Ludwig Zenz wrote: > [...] > > > static int setup_dhcom_mac_from_fuse(void) > > { > > + struct udevice *dev; > > unsigned char enetaddr[6]; > > int ret; > > > > @@ -228,13 +142,13 @@ static int

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Lukasz Majewski
Hi Peng, > Hi Lukasz, > > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > Hi Peng, > > > > > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > > > > > Hi Peng, > > > > > > > > > From: Peng Fan > > > > > > > > > > This patchset is to support i.MX8MM/8MN with

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Peng Fan
Hi Lukasz, > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > Hi Peng, > > > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > > > Hi Peng, > > > > > > > From: Peng Fan > > > > > > > > This patchset is to support i.MX8MM/8MN with some update in ddr > > > > settings and

Re: [U-Boot] [PATCH 4/4 v3] test: dm: add a test for MDIO MUX DM uclass

2019-07-08 Thread Bin Meng
On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: > > Adds a test using a makeshift MDIO MUX. The test is based on the existing > MDIO test. It uses the last emulated PHY register to verify MUX selection. > > Signed-off-by: Alex Marginean > --- > > Changes in v2: > - no

Re: [U-Boot] [PATCH 2/4 v3] doc: bindings: Add description for MDIO MUX dts nodes

2019-07-08 Thread Bin Meng
On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: > > Adds a short bindings document describing the expected structure of a MDIO > MUX dts node. This is based on Linux binding and the example is in fact > copied from there. > > Signed-off-by: Alex Marginean > --- > > Changes in v2: >

Re: [U-Boot] [PATCH 3/4 v3] test: dm_mdio: add a 2nd register to the emulated PHY

2019-07-08 Thread Bin Meng
On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: > > This 2nd register is used by the follow-up MDIO MUX test. > > Signed-off-by: Alex Marginean > --- > > Changes in v2: > - no change > Changes in v3: > - no change, just fighting with the email server > >

Re: [U-Boot] [PATCH 1/4 v3] net: add MDIO_MUX DM class

2019-07-08 Thread Bin Meng
On Tue, Jun 18, 2019 at 10:58 PM Alexandru Marginean wrote: > > Adds a class for MDIO MUXes, which control access to a series of > downstream child MDIOs. > MDIO MUX drivers are required to implement a select function used to switch > between child buses. > MUX children are registered as MDIO

Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N

2019-07-08 Thread Lukasz Majewski
Hi Peng, > > Subject: Re: [U-Boot] [PATCH 00/52] Support i.MX8MM/N > > > > Hi Peng, > > > > > From: Peng Fan > > > > > > This patchset is to support i.MX8MM/8MN with some update in ddr > > > settings and ddr driver update. > > > > > > The initial patchset to support i.MX8MM is > > >

<    1   2